FF133 ServiceWorkerContainer supported in workers (#24993) #1
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: Release PR | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
concurrency: | |
group: ${{ github.workflow }} | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
manage-release-pr: | |
if: github.repository == 'mdn/browser-compat-data' | |
name: Manage release PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
registry-url: "https://registry.npmjs.org/" | |
cache: npm | |
- name: "Setup git" | |
run: | | |
git remote set-url origin https://mdn-bot:[email protected]/${{ github.repository }}.git | |
git config user.email [email protected] | |
git config user.name mdn-bot | |
- name: Install | |
run: npm ci | |
- name: Release | |
run: npm run release |