Skip to content

feat: add an empty test.txt file #4

feat: add an empty test.txt file

feat: add an empty test.txt file #4

Workflow file for this run

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 }}