We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7e8dc commit d2b73a1Copy full SHA for d2b73a1
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,33 @@
1
+
2
+name: github-app-auth-action
3
4
+on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ action-tag:
8
+ description: "Tag for the action"
9
+ required: true
10
+ default: "main"
11
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ github-app-auth-action-main:
17
+ name: GitHub App Auth (main)
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Harden Runner
21
+ uses: step-security/harden-runner@v2
22
+ with:
23
+ egress-policy: audit
24
25
+ - name: Checkout
26
+ uses: actions/checkout@v6
27
28
+ - name: Get GitHub App Token
29
+ id: auth
30
+ continue-on-error: true
31
+ uses: step-security/github-app-auth-action@main
32
33
+ creds: ${{ secrets.APP_CREDS }}
0 commit comments