Compare commits

...

5 Commits

Author SHA1 Message Date
Gregor Martynus
c04bb41e61 fix(README): update repository name, remove section for feature that is not yet implemented (#9)
Some checks failed
test / test (push) Has been cancelled
Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>
2023-08-21 11:49:27 -07:00
Gregor Martynus
75a13e1cc6 build(CODEOWNERS): initial version (#7)
Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>
2023-08-21 11:49:07 -07:00
Gregor Martynus
d1dfb47fa4 ci: update test (#8) 2023-08-21 11:42:40 -07:00
Gregor Martynus
847634eeb3 fix(ci): release configuration (#6)
Some checks failed
/ demo (push) Has been cancelled
2023-06-15 15:51:56 -07:00
Gregor Martynus
c08b7942e4 fix(README): update action name (#5)
Some checks failed
/ demo (push) Has been cancelled
2023-06-15 15:48:41 -07:00
4 changed files with 16 additions and 26 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
* @gr2m @parkerbxyz @actions/github-app-token-maintainers

View File

@@ -1,21 +1,22 @@
name: test
on: [push]
jobs:
demo:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.16'
cache: 'npm'
node-version: "16.16"
cache: "npm"
- run: npm ci
- run: npm run build
- uses: ./ # Uses the action in the root directory
id: demo
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ vars.TEST_APP_ID }}
private_key: ${{ secrets.TEST_APP_PRIVATE_KEY }}
- uses: octokit/request-action@v2.x
id: get-repository
env:

View File

@@ -1,4 +1,4 @@
# `app-token-action`
# `actions/github-app-token`
> GitHub Action for creating a GitHub App Installation Access Token
@@ -19,7 +19,7 @@ jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- uses: gr2m/app-token-action@v1
- uses: actions/github-app-token@v1
id: app-token
with:
app_id: ${{ vars.APP_ID }}
@@ -31,24 +31,6 @@ jobs:
body: "Hello, World!"
```
### Limit the app's permissions and access to repositories
```yaml
on: [issues]
jobs:
with-scoped-token:
runs-on: ubuntu-latest
steps:
- uses: gr2m/app-token-action@v1
id: app-token
with:
# required
app_id: ${{ vars.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
# do something with the token
```
### Use app token with `actions/checkout`
```yaml
@@ -58,7 +40,7 @@ jobs:
auto-format:
runs-on: ubuntu-latest
steps:
- uses: gr2m/app-token-action@v1
- uses: actions/github-app-token@v1
id: app-token
with:
# required

View File

@@ -22,6 +22,12 @@
"branches": [
"+([0-9]).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"semantic-release-plugin-github-breaking-version-tag"
]
}
}