mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2025-07-14 22:29:17 +08:00
Bumps [peaceiris/actions-github-app-token](https://github.com/peaceiris/actions-github-app-token) from 1.1.4 to 1.1.5. - [Release notes](https://github.com/peaceiris/actions-github-app-token/releases) - [Commits](https://github.com/peaceiris/actions-github-app-token/compare/v1.1.4...v1.1.5) --- updated-dependencies: - dependency-name: peaceiris/actions-github-app-token dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
548 B
YAML
23 lines
548 B
YAML
name: "Pull Request Labeler"
|
|
|
|
on:
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 1
|
|
permissions: {}
|
|
steps:
|
|
# https://github.com/peaceiris/actions-github-app-token
|
|
- uses: peaceiris/actions-github-app-token@v1.1.5
|
|
id: app
|
|
with:
|
|
app_id: ${{ secrets.GH_APP_ID }}
|
|
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
|
|
# https://github.com/actions/labeler
|
|
- uses: actions/labeler@v4
|
|
with:
|
|
repo-token: "${{ steps.app.outputs.token }}"
|