/whos-on-call-next-week

GitHub Action that asks PagerDuty who's on call next week

Primary LanguageJavaScriptMIT LicenseMIT

Who's On Call Next Week?

GitHub Actions build badge

GitHub Action to look up who's on call next week.

Note: I am no longer maintaining this. Please fork it if you would like to make changes.

Example

- uses: brcrista/whos-on-call-next-week@dev
  id: oncallSchedule
  with:
    scheduleId: PVHAB95
    pagerDutyToken: ${{ secrets.PAGERDUTY_API_KEY }}

# Check that the output parameter has been set.
- run: echo $ONCALLNEXTWEEK
  env:
    ONCALLNEXTWEEK: ${{ steps.oncallSchedule.outputs.oncallNextWeek }}

Contributing

Running tests

export PAGERDUTY_API_KEY="your PagerDuty API key"
export PAGERDUTY_SCHEDULE_ID="your PagerDuty schedule ID"
npm run test