chore(container): update image ghcr.io/elraro/send-to-kindle-telegram-bot to e5a7a9c #2192
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "Meta: Labeler" | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| labeler: | |
| name: Labeler | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate Token | |
| uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2 | |
| id: generate-token | |
| with: | |
| app_id: "${{ secrets.BOT_APP_ID }}" | |
| private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
| - name: Labeler | |
| uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6 | |
| with: | |
| configuration-path: .github/labeler.yaml | |
| repo-token: "${{ steps.generate-token.outputs.token }}" |