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 767b25f commit fd77eafCopy full SHA for fd77eaf
.github/workflows/dispatch-roadmap-update.yml
@@ -1,7 +1,7 @@
1
name: Dispatch Roadmap Update
2
3
on:
4
- pull_request:
+ pull_request_target:
5
types: [labeled]
6
7
jobs:
@@ -12,6 +12,14 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
+ - name: Debug secret
16
+ run: |
17
+ if [ -z "${{ secrets.PROJECT_TOKEN }}" ]; then
18
+ echo "❌ PROJECT_TOKEN is not set"
19
+ exit 1
20
+ else
21
+ echo "✅ PROJECT_TOKEN is present"
22
+ fi
23
- name: Trigger privileged workflow via repository_dispatch
24
uses: peter-evans/repository-dispatch@v3
25
with:
0 commit comments