Skip to content

Commit d2b73a1

Browse files
ewf
1 parent 8e7e8dc commit d2b73a1

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
33+
creds: ${{ secrets.APP_CREDS }}

0 commit comments

Comments
 (0)