feat: add an empty test.txt file #4
Workflow file for this run
This file contains hidden or 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: PR Checks | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, edited, reopened ] | |
| branches: [ master ] | |
| jobs: | |
| checks: | |
| name: PR Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup proto and moon toolchains | |
| uses: moonrepo/setup-toolchain@v0 | |
| with: | |
| auto-install: true | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Validate PR title | |
| run: cog verify "${{ github.event.pull_request.title }}" | |
| - name: Run moon CI tasks | |
| run: moon ci | |
| - name: Generate CI run reports | |
| uses: moonrepo/run-report-action@v1 | |
| with: | |
| access-token: ${{ secrets.GITHUB_TOKEN }} |