Skip to content

Update desktop-address-autofill-austria-release-holdback.toml #2225

Update desktop-address-autofill-austria-release-holdback.toml

Update desktop-address-autofill-austria-release-holdback.toml #2225

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."
})