Update welcome.yml #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Post welcome comment | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
[master, dev] | |
pull_request: | |
branches: | |
[master, dev] | |
jobs: | |
build: | |
name: Post welcome comment | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create GH Release | |
run: | | |
gh release create v1.0.0 --title "My Release" --notes "This is my release notes" |