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 131ce11 commit bdc6150Copy full SHA for bdc6150
1 file changed
.github/workflows/deploy.yml
@@ -19,6 +19,14 @@ jobs:
19
runs-on: ubuntu-latest
20
if: github.event_name == 'pull_request'
21
steps:
22
+ - name: Sanity-check secret
23
+ env:
24
+ ORG_PAT: ${{ secrets.ORG_PAT }}
25
+ run: |
26
+ if [ -z "$ORG_PAT" ]; then
27
+ echo "ORG_PAT is empty"; exit 1
28
+ fi
29
+
30
- name: Checkout code
31
uses: actions/checkout@v4
32
- name: configure aws credentials
@@ -65,7 +73,7 @@ jobs:
65
73
66
74
- name: Assign team reviewer via GitHub API
67
75
env:
68
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76
69
77
run: |
70
78
curl -X POST \
71
79
-H "Authorization: Bearer $GITHUB_TOKEN" \
0 commit comments