Skip to content

Bump the typescript group across 2 directories with 1 update #1468

Bump the typescript group across 2 directories with 1 update

Bump the typescript group across 2 directories with 1 update #1468

name: BCD upgrade
on:
pull_request:
types: [opened]
permissions:
pull-requests: write
jobs:
post-comment:
name: "Post checklist"
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: dependabot-metadata
continue-on-error: true
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 #v3.1.0
- if: ${{ contains(steps.dependabot-metadata.outputs.dependency-names, '@mdn/browser-compat-data') }}
continue-on-error: true
run: gh pr comment --repo="$GITHUB_REPOSITORY" "$GITHUB_EVENT_NUMBER" --body "$BODY"
env:
GH_TOKEN: ${{ github.token }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_EVENT_NUMBER: ${{ github.event.number }}
# TODO: reinstate this post-merge checklist item when https://github.com/web-platform-dx/web-features/issues/1672 is resolved
# - [ ] (Optional) [Trigger a workflow run to remove tagged compat features](https://github.com/web-platform-dx/web-features/actions/workflows/remove_tagged_compat_features.yml).
BODY: |
Complete this checklist for every `@mdn/browser-compat-data` upgrade PR.
- [ ] Check out this branch locally.
- [ ] If any keys were removed in the release, delete them from `.yml` files and commit your changes.
- [ ] Run `npm install && npm run dist && npm test && git commit --all --message="Refresh dist" && git push`.
- [ ] Review the diff. Watch out for Baseline regressions; if applicable, add a comment (see [#1971](/web-platform-dx/web-features/issues/1971)).
- [ ] Merge this PR.
After merging, do these steps:
- [ ] [Trigger a drafts update workflow run](https://github.com/web-platform-dx/web-features/actions/workflows/update_draft_features_weekly.yml).
- [ ] Start a PR to [publish the next web-features release](https://github.com/web-platform-dx/web-features/blob/main/docs/publishing.md#regular-releases).