We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25ed126 commit 3372e04Copy full SHA for 3372e04
.github/workflows/pr-preview.yml
@@ -5,6 +5,15 @@ on:
5
types: [created]
6
7
jobs:
8
+ debug-secrets:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Check if secrets are available
12
+ run: |
13
+ if [ -z "$TOKEN" ]; then echo "GH_READ_ORG_TOKEN is empty"; else echo "GH_READ_ORG_TOKEN is set"; fi
14
+ env:
15
+ TOKEN: ${{ secrets.GH_READ_ORG_TOKEN }}
16
+
17
check-permissions:
18
uses: patternfly/.github/.github/workflows/check-team-membership.yml@main
19
secrets: inherit
0 commit comments