mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
013b271359
* move lib.sh to common dir * make check-labels a github action * check out the repo * fix secrets * add labelled PR type * remove check-labels job from gitlab * trigger on unlabelling also
17 lines
414 B
YAML
17 lines
414 B
YAML
name: Check labels
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled, opened, synchronize, unlabeled]
|
|
|
|
jobs:
|
|
check-labels:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check labels
|
|
run: bash ${{ github.workspace }}/scripts/github/check_labels.sh
|
|
env:
|
|
GITHUB_PR: ${{ github.event.pull_request.number }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|