Skip to content

Fixing links of the gallery #718

Fixing links of the gallery

Fixing links of the gallery #718

Workflow file for this run

name: Pull Request Labels
on:
pull_request:
types: [labeled, unlabeled, synchronize]
workflow_run:
workflows: ["Pull Request Labeler"]
types:
- completed
jobs:
label:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
outputs:
status: ${{ steps.check-labels.outputs.status }}
steps:
- id: check-labels
uses: mheap/github-action-required-labels@v4
with:
mode: exactly
count: 1
labels: "release:patch, release:minor, release:major, norelease"
exit_type: success
do-other:
runs-on: ubuntu-latest
needs: label
steps:
- run: echo SUCCESS
if: needs.label.outputs.status == 'success'
- run: echo FAILURE && exit 1
if: needs.label.outputs.status == 'failure'