✨ 📖 [AMP Story Audio Sticker] Documentation and validator tests #8780
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update status.amp.dev | |
on: | |
issues: | |
types: [opened] | |
issue_comment: | |
types: [edited] | |
permissions: | |
contents: read | |
jobs: | |
status-page: | |
if: contains(github.event.issue.title, '🌸 Cherry-pick request') | |
runs-on: ubuntu-latest | |
environment: status_page | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 # v2.5.0 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0 | |
with: | |
node-version: lts/* | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Add progress comment to cherry-pick issue for Stable and LTS | |
if: github.event_name == 'issues' && github.event.action == 'opened' | |
run: | | |
npm ci | |
node ./build-system/status-page/comment.js ${{ github.event.issue.number }} ${{ github.actor }} | |
env: | |
BODY: ${{ github.event.issue.body }} | |
GITHUB_TOKEN: ${{ secrets.AMPPROJECTBOT }} | |
- name: Sync status page with cherry-pick progress | |
if: github.event_name == 'issue_comment' && github.event.action == 'edited' && contains(github.event.comment.body, '🌸 Cherry-pick Progress 🌸') | |
run: | | |
npm ci | |
node ./build-system/status-page/incident.js ${{ github.event.issue.number }} | |
env: | |
BODY: ${{ github.event.issue.body }} | |
COMMENT_BEFORE: ${{ github.event.changes.body.from }} | |
COMMENT_AFTER: ${{ github.event.comment.body }} | |
STATUS_PAGE_ID: ${{ secrets.STATUS_PAGE_ID }} | |
STATUS_PAGE_TOKEN: ${{ secrets.STATUS_PAGE_TOKEN }} | |
create-issue-on-error: | |
if: failure() | |
needs: status-page | |
permissions: | |
contents: read | |
issues: write | |
runs-on: ubuntu-latest | |
environment: create_issue_on_error | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 # v2.5.0 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Create issue on error | |
uses: JasonEtco/create-an-issue@e27dddc79c92bc6e4562f268fffa5ed752639abd # v2.9.1 | |
with: | |
filename: .github/create_issue_on_error.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.AMPPROJECTBOT }} | |
WORKFLOW_NAME: ${{ github.workflow }} | |
MENTION: '@ampproject/wg-infra' | |
REPO_SLUG: ${{ github.repository }} | |
RUN_ID: ${{ github.run_id }} |