Skip to content

testing gh pipeline

testing gh pipeline #3

Workflow file for this run

name: Update issue
on:
issues:
jobs:
comment_when_issue_labeled_staged_for_release:
runs-on: ubuntu-latest
if: >-
!github.event.issue.pull_request &&
github.event.action == 'labeled' &&
github.event.label.name == 'staged for release'
steps:
- name: Comment on issue
run: |
cat << EOF | gh issue comment ${{ github.event.issue.number }} -F -
The change has been merged and will be part of the next release.
If you want to try and verify it in your application,
use the current `SNAPSHOT` build as described in our [README.md](https://github.com/springwolf/springwolf-core)
Thank you for the report/contribution!
EOF
comment_when_staged_for_release_issue_is_closed:
runs-on: ubuntu-latest
if: >-

Check failure on line 26 in .github/workflows/gh-issues.yml

View workflow run for this annotation

GitHub Actions / Update issue

Invalid workflow file

The workflow is not valid. .github/workflows/gh-issues.yml (Line: 26, Col: 9): Unexpected symbol: '#'. Located at position 49 within expression: !github.event.issue.pull_request && # Only run on issues (no pr comments) github.event.action == 'closed' && github.event.label.name == 'staged for release'
!github.event.issue.pull_request && # Only run on issues (no pr comments)
github.event.action == 'closed' &&
github.event.label.name == 'staged for release'
steps:
- name: Comment on issue
run: |
cat << EOF | gh issue comment ${{ github.event.issue.number }} -F -
The change is available as part of the latest release. 🎉
Thank you for the report/contribution and making Springwolf better!
EOF