We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631c570 commit 8a608c5Copy full SHA for 8a608c5
.github/workflows/on_label_added.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
split-large-pr:
10
- if: github.event.label.name == 'size/XXL'
+ if: ${{ github.event.label.name == 'size/XXL' }}
11
runs-on: ubuntu-latest
12
permissions:
13
issues: write
@@ -17,9 +17,9 @@ jobs:
17
- name: "Suggest split large Pull Request"
18
uses: actions/github-script@v6
19
env:
20
- PR_NUMBER: ${{ github.event.issue.number }}
+ PR_NUMBER: ${{ github.event.pull_request.number }}
21
with:
22
github-token: ${{ secrets.GITHUB_TOKEN }}
23
script: |
24
- const script = require('.github/scripts/comment_on_large_pr.js')
25
- await script({github, context, core})
+ const script = require('.github/scripts/comment_on_large_pr.js');
+ await script({github, context, core});
0 commit comments