Skip to content

new development/deployment/release process #13

new development/deployment/release process

new development/deployment/release process #13

Workflow file for this run

name: Check Labels
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled]
workflow_dispatch:
jobs:
devnet-pass:
name: devnet-pass
runs-on: ubuntu-latest
steps:
- name: Labels not added
if: ${{ contains( github.event.pull_request.labels.*.name, 'devnet-pass')) != true }}

Check failure on line 14 in .github/workflows/check-labels.yml

View workflow run for this annotation

GitHub Actions / Check Labels

Invalid workflow file

The workflow is not valid. .github/workflows/check-labels.yml (Line: 14, Col: 13): Unexpected symbol: ')'. Located at position 66 within expression: contains( github.event.pull_request.labels.*.name, 'devnet-pass')) != true
run: exit 1
testnet-pass:
name: testnet-pass
runs-on: ubuntu-latest
steps:
- name: Check for Required Label
if: ${{ contains(fromJson('["testnet-pass"]'), github.event.label.name) != true }}
run: |
echo "Error: Required label 'testnet-pass' is missing."
exit 1