e2e tests: Add test root readonly (#2976) #173
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: 🚀 Tagpr for GitHub Actions | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tagpr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install just | |
uses: taiki-e/install-action@just | |
- uses: Songmu/tagpr@v1 | |
id: tagpr | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Trigger Release Workflow(only when tagged) | |
uses: actions/github-script@v6 | |
if: "steps.tagpr.outputs.tag != ''" | |
with: | |
script: | | |
github.rest.actions.createWorkflowDispatch({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
workflow_id: 'release.yaml', | |
ref: "refs/tags/${{ steps.tagpr.outputs.tag }}", | |
}) |