Files
atlantis/runatlantis.io/docs
Dalton Hubble 00a5bc0fc0 Add a branch regex matcher to the server side repo config (#1383)
* Add a branch regex to the repo.yaml config to allow Atlantis to
accept only pull requests with a given base branch (the branch
a PR would merge _into_).
* `branch` is optional. By default its unset and Atlantis will match
webhooks for pull requests for any branch (no change)

Match any PR,

```
repos:
  - id: /.*/
    branch: /.*/
```

Match only PRs with master or main base branch.

```
repos:
  - id: /.*/
    branch: /(main|master)/
```

Some repos have special pull request branching practices. For example,
plan/apply from feature branches merging into master, but separate flows
for merging master into a release branch (where Atlantis isn't used).
Adding a regex allows for flexible workflow options. For example, you
could have Atlantis ignore "release" branches.
2021-02-24 12:52:30 -08:00
..
2019-03-28 13:45:12 -05:00
2020-12-02 16:58:50 -05:00
2018-06-22 17:27:15 +01:00
2019-01-07 16:10:21 -05:00
2020-10-30 14:15:55 -07:00
2020-01-20 12:46:00 -06:00
2019-04-09 13:02:25 +08:00

Atlantis Documentation

These docs are for users that are ready to get Atlantis installed and start using it.

:::tip Looking to get started? If you're new here, check out the Guide where you can try our Test Drive or Run Atlantis Locally. :::

Next Steps