diff --git a/.github/workflows/check-formatting.yml b/.github/workflows/check-formatting.yml index d7f0dd1..40629c8 100644 --- a/.github/workflows/check-formatting.yml +++ b/.github/workflows/check-formatting.yml @@ -1,6 +1,11 @@ name: Check Formatting -on: [push, pull_request] +on: + push: + branches: + - main + + pull_request: jobs: check-formatting: diff --git a/.github/workflows/pause-community-contributions.yml b/.github/workflows/pause-community-contributions.yml deleted file mode 100644 index 84d452b..0000000 --- a/.github/workflows/pause-community-contributions.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Pause Community Contributions - -on: - issues: - types: - - opened - pull_request_target: - types: - - opened - paths-ignore: - - 'exercises/*/*/.approaches/**' - - 'exercises/*/*/.articles/**' - -permissions: - issues: write - pull-requests: write - -jobs: - pause: - if: github.repository_owner == 'exercism' # Stops this job from running on forks - uses: exercism/github-actions/.github/workflows/community-contributions.yml@main - with: - forum_category: lua - secrets: - github_membership_token: ${{ secrets.COMMUNITY_CONTRIBUTIONS_WORKFLOW_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9da6454..f69ae2e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,11 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - main + + pull_request: jobs: test: