docs: update supported integrations documentation #3653
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
| name: Check Pull Request CI Status | |
| on: | |
| workflow_dispatch: # allow to trigger the workflow on main, to add it in suggestion on branch protection rules | |
| pull_request: | |
| permissions: | |
| checks: read | |
| statuses: read | |
| jobs: | |
| all-jobs-are-green: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Ensure CI Success | |
| uses: DataDog/ensure-ci-success@b0d931ac77c810490e61964c321103040eef888e | |
| with: | |
| initial-delay-seconds: "600" | |
| max-retries: "60" | |
| # polling-interval-seconds: "60" # Default | |
| ignored-name-patterns: | | |
| devflow/merge | |
| label_issues | |
| check-title | |
| # Reason for ignored-name-patterns: | |
| # | |
| # * devflow/merge: technical job used by the merge queue, do not remove it. | |
| # * check-title: CI job used to validate the PR title, enforced by branch protection rules, do not remove it. |