2022-02-15 14:26:30 +03:00
|
|
|
name: Maintenance
|
2022-02-15 13:35:59 +03:00
|
|
|
|
2023-11-20 20:57:16 +03:00
|
|
|
env:
|
|
|
|
# https://github.com/actions/setup-node/issues/899#issuecomment-1819151595
|
|
|
|
SKIP_YARN_COREPACK_CHECK: 1
|
|
|
|
|
2022-02-15 13:35:59 +03:00
|
|
|
on:
|
|
|
|
pull_request_review:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ensure-comment:
|
|
|
|
name: Ensure bump comment
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-15 13:35:59 +03:00
|
|
|
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/setup-node@v3
|
2022-02-15 13:35:59 +03:00
|
|
|
with:
|
|
|
|
node-version: "16"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-06-16 13:29:18 +03:00
|
|
|
working-directory: .github/bot
|
2022-02-15 13:35:59 +03:00
|
|
|
run: |
|
|
|
|
yarn
|
|
|
|
|
|
|
|
- name: Ensure that bump command exists
|
2024-06-16 13:29:18 +03:00
|
|
|
working-directory: .github/bot
|
2022-02-15 13:35:59 +03:00
|
|
|
run: |
|
|
|
|
npx ts-node src/cargo/ensure-comment.ts
|