mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-03-30 17:05:12 +01:00
Bumps [pascalgn/size-label-action](https://github.com/pascalgn/size-label-action) from 0.5.4 to 0.5.5.
- [Release notes](https://github.com/pascalgn/size-label-action/releases)
- [Commits](be08a2d5f8...f8edde36b3)
---
updated-dependencies:
- dependency-name: pascalgn/size-label-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
28 lines
728 B
YAML
28 lines
728 B
YAML
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@f8edde36b3be04b4f65dcfead05dc8691b374348
|
|
env:
|
|
GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }}
|