Skip to content

Commit

Permalink
feat: more extensive console reporting added
Browse files Browse the repository at this point in the history
  • Loading branch information
castastrophe committed May 26, 2023
1 parent 6f1679e commit ddaa83b
Show file tree
Hide file tree
Showing 5 changed files with 153 additions and 13,284 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
node_modules
node_modules/*
*.log
.husky
.DS_Store
.env
npm-debug.log*
coverage/
coverage/*

bin/
bin/*
1 change: 1 addition & 0 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"assets": [
"bin/index.js",
"CHANGELOG.md",
"README.md",
"package.json",
"yarn.lock"
],
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
- name: Update ALL THE PRS! 🎉
uses: castastrophe/actions-pr-auto-update@v1.0.0
with:
token: ${{ secrets.USER_TOKEN }}
# Optional: include a limit to the number of PRs to update (default is 100)
limit: 10
# Optional: set this to true if you want to include draft PRs in those to be updated
Expand All @@ -39,6 +38,9 @@ jobs:
exclude_labels: "do not update,skip update"
# Optional: include a list of labels, at least one of which are required to be present for the PR to be updated; these are comma-separated.
include_labels: "update,update me"
env:
# defaults to github.token
GITHUB_TOKEN: ${{ secrets.USER_TOKEN }}
```
Once this is in place, every time a commit is pushed to one of the branches specified in your workflow, all pull requests targeting that branch (and that fall within the configured parameters) will be updated.
Expand Down
Loading

0 comments on commit ddaa83b

Please sign in to comment.