Skip to content

Update Session Issues #667

Update Session Issues

Update Session Issues #667

name: Update Session Issues
on:
# This schedule should match the time rotation configured on
# update-design-review-issues.js.
# Times correspond to session end, and additionally 1 hour earlier to account
# for Daylight Savings.
schedule:
- cron: '30 16,17 * * 3' # Africa/Europe/western Asia
- cron: '0 21,22 * * 3' # Americas
permissions:
contents: read
jobs:
update-session-issues:
permissions:
issues: write
if: github.repository == 'ampproject/amphtml'
name: Update Session Issues
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Checkout Repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Update Session Issues
run: |
node ./build-system/common/update-session-issues
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}