Bump elgohr/Publish-Docker-Github-Action from ec61b713af46c32efaa27ac2626c2acb82ce6435 to 56d83a64624e457e0dde052abc8baa3fec37b396 #289
Workflow file for this run
This file contains 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: Size Labelling | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
concurrency: | |
group: "size-labelling-${{ github.head_ref || github.run_id }}-${{ github.event_name }}" | |
cancel-in-progress: true | |
jobs: | |
size-label: | |
name: Add Size Label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate App Token | |
id: app-token-generation | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Run Labeller | |
uses: pascalgn/size-label-action@be08a2d5f857dc99c5b9426cdb5a8ea1aa7f0399 | |
env: | |
GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }} |