mirror of
https://github.com/immich-app/immich.git
synced 2025-12-06 09:13:13 +03:00
23 lines
702 B
YAML
23 lines
702 B
YAML
name: 'Pull Request Labeler'
|
|
on:
|
|
- pull_request_target # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
labeler:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: token
|
|
uses: immich-app/devtools/actions/create-workflow-token@da177fa133657503ddb7503f8ba53dccefec5da1 # create-workflow-token-action-v1.0.0
|
|
with:
|
|
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
|
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
|
|
|
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
|
|
with:
|
|
repo-token: ${{ steps.token.outputs.token }}
|