Skip to content

fix(authorship): Forward-fix a test that will require the gear-bank account to exist #82

fix(authorship): Forward-fix a test that will require the gear-bank account to exist

fix(authorship): Forward-fix a test that will require the gear-bank account to exist #82

Workflow file for this run

name: Label
on:
pull_request:
branches: [master, vara-stage-1, vara-stage-2, vara-stage-3]
types: [labeled]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
dispatch:
runs-on: ubuntu-latest
if: >-
github.event.label.name == 'A0-pleasereview'
|| github.event.label.name == 'E2-forcemacos'
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/github-script@v6
env:
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
LABEL: ${{ github.event.label.name }}
REF: ${{ github.head_ref || github.ref_name }}
with:
script: |
const script = require('./.github/actions/label/build.js');
await script({ github, core });