feat(filesystem): add new Filesystem
component (#441)
#566
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: Trigger tempest/clean QA | |
on: | |
push: | |
branches: [main] | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger tempest/app QA workflow | |
run: | | |
repo_owner="tempestphp" | |
repo_name="tempest-app" | |
event_type="trigger-workflow" | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.PAT }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/tempestphp/tempest-app/actions/workflows/tempest-clean-quality-control.yml/dispatches \ | |
-d "{\"ref\":\"main\"}" |