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 58300da commit bc4c9b9Copy full SHA for bc4c9b9
.github/workflows/dispatch-roadmap-update.yml
@@ -1,7 +1,7 @@
1
name: Dispatch Roadmap Update
2
3
on:
4
- pull_request_target:
+ pull_request:
5
types: [labeled]
6
7
jobs:
.github/workflows/roadmap-update.yml
@@ -20,6 +20,7 @@ jobs:
20
- name: Update Project Board Dates
21
uses: actions/github-script@v6
22
with:
23
+ github-token: ${{ secrets.PROJECT_TOKEN }}
24
script: |
25
const { Octokit } = require('@octokit/rest');
26
const octokit = new Octokit({ auth: github.token });
@@ -171,6 +172,4 @@ jobs:
171
172
console.error('Error updating project board:', error);
173
core.setFailed(`Error updating project board:${error.message}`);
174
}
- }
175
- env:
176
- PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}
+ }
0 commit comments