Route debugger exploration builds through repository proxies #1152
Workflow file for this run
This file contains hidden or 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
| # How to configure: | ||
|
Check warning on line 1 in .github/workflows/team-freeze-guard.yaml
|
||
| # | ||
| # When no team is frozen, set `frozen-teams` to an empty string: | ||
| # frozen-teams: "" | ||
| # | ||
| # When one or more teams are frozen, add them one per line with the @DataDog prefix: | ||
| # | ||
| # frozen-teams: | | ||
| # @DataDog/team-a | ||
| # @DataDog/team-b | ||
| name: Team freeze guard | ||
| on: | ||
| pull_request_target: | ||
| types: | ||
| - opened | ||
| - reopened | ||
| - synchronize | ||
| - labeled | ||
| - unlabeled | ||
| - ready_for_review | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| jobs: | ||
| team-freeze-guard: | ||
| name: Team freeze guard | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: DataDog/team-freeze-guard@e4ff51a72cac229b238e5a302af0d3d955ae5b54 # v0.0.4 | ||
| with: | ||
| bypass-labels: | | ||
| comp: testing | ||
| comp: tooling | ||
| tag: flaky test | ||
| tag: flaky test/disabled | ||
| frozen-teams: "" | ||