Skip to content

Commit

Permalink
Try to enable autofixes
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c committed Mar 13, 2024
1 parent d8675a6 commit 13f3111
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,29 @@ jobs:
checks: write
runs-on: ubuntu-latest
steps:
- name: Check out repo
- if: >-
github.actor != 'dependabot[bot]' && (
github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == github.repository
)
name: Check out repo
uses: actions/checkout@v4
with:
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
- if: >-
github.actor == 'dependabot[bot]' || (
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository
)
name: Check out repo
uses: actions/checkout@v4
# We don't share secrets with Dependabot nor forks.
- name: Set Git user
run: |
git config user.name seek-oss-ci
git config user.email [email protected]
- name: Set up Node.js
uses: actions/setup-node@v3
Expand Down

0 comments on commit 13f3111

Please sign in to comment.