Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(manage-issue-due-dates): create helper for managing issue due dates #442

Merged
merged 21 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/manage-issue-due-dates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Manage Issue Due Dates

on:
schedule:
- cron: '0 0 * * *'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: ./
with:
helper: manage-issue-due-dates
login: ${{ github.event.review.user.login }}
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} # must have read:org permission
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ with:

## Available Helpers
Each of the following helpers are defined in a file of the same name in `src/helpers`:
### [add-overdue-issue-label](.github/workflows/add-overdue-issue-label.yml)
k-borley marked this conversation as resolved.
Show resolved Hide resolved
* Adds 'overdue' or 'due soon' labels to issues that have a priority label and are overdue based on SLA guidelines

### [are-reviewers-required](.github/workflows/are-reviewers-required.yml)
* Returns true if all teams specified are requested for review on a pull request

Expand Down
14 changes: 13 additions & 1 deletion dist/0.index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/0.index.js.map

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion dist/101.index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/101.index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading