Skip to content

Commit

Permalink
chore: iterating on contributors generation
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed May 4, 2021
1 parent 2523f99 commit 5217c24
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/generate-contributors.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v2
- uses: actions/cache@v1
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -39,7 +39,11 @@ jobs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
# The standard GITHUB_TOKEN cannot be used as it will not trigger status checks on
# the PR that gets created (this behavior is not specific to this action).
# https://github.com/peter-evans/create-pull-request/blob/master/docs/concepts-guidelines.md#triggering-further-workflow-runs
token: ${{ secrets.JAMES_HENRY_GH_TOKEN }}
commit-message: "chore: update contributors"
title: "chore: update contributors"
body: ""
branch: auto-update-contributors

0 comments on commit 5217c24

Please sign in to comment.