We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6715a commit b140b3cCopy full SHA for b140b3c
1 file changed
.github/workflows/major-version-approval-workflow.yaml
@@ -7,19 +7,10 @@ on:
7
pull_request_review:
8
types: [submitted, dismissed]
9
10
-concurrency:
11
- group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
12
- cancel-in-progress: true
13
-
14
-permissions:
15
- contents: read
16
- pull-requests: read
17
18
jobs:
19
call-approval-check:
20
if: contains(github.event.pull_request.body, 'MAJOR_VERSION_ALLOWED=')
21
- uses: ./.github/workflows/major-version-approval-logic.yaml
22
- with:
23
- pr_number: ${{ github.event.pull_request.number }}
24
- secrets:
25
- token: ${{ secrets.SPLIT_TOKEN }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check if job runs
+ run: echo "The if condition was true!"
0 commit comments