Skip to content

chore(deps): bump click from 8.3.0 to 8.3.1 in /lib/metric-config-parser #2239

chore(deps): bump click from 8.3.0 to 8.3.1 in /lib/metric-config-parser

chore(deps): bump click from 8.3.0 to 8.3.1 in /lib/metric-config-parser #2239

name: "rerun-skip comment"
on:
pull_request:
branches:
- main
jobs:
changed:
uses: ./.github/workflows/changed-files.yml
with:
path_filter: |
jetstream/defaults/*.toml
rerun_skip_comment:
name: Leave a comment if defaults have been changed
permissions:
pull-requests: write
runs-on: ubuntu-latest
needs: changed
if: needs.changed.outputs.any_changed == 'true'
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: "⚠️ Changing default metrics will cause all experiments that are currently live to get rerun after this change has been merged. This may come with a substantial cost. To skip reruns, add `[ci skip-rerun]` to the PR message."
})