Skip to content

Commit eeebda0

Browse files
Fix branch names (#2)
* Fix branch names * Remove copypasta * Remove copypasta
1 parent 99577ad commit eeebda0

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/pull-requests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Lint
33
on:
44
pull_request:
55
branches:
6-
- main
6+
- master
77

88
# cancel workflow runs in progress when a new commit comes through
99
concurrency:
@@ -61,10 +61,6 @@ jobs:
6161
name: tfdocs
6262
working-directory: .
6363

64-
- run: terraform-docs markdown table --output-file README.md --output-mode inject .
65-
name: tfdocs cloudwatch-logging
66-
working-directory: ./modules/cloudwatch-logging
67-
6864
- name: commit changes
6965
env:
7066
GH_TOKEN: ${{ github.token }}
@@ -73,7 +69,6 @@ jobs:
7369
git config --global user.email "[email protected]"
7470
git config --global user.name "DevOps"
7571
git add README.md
76-
git add modules/cloudwatch-logging/README.md
7772
export CHANGES=$(git diff --cached)
7873
if [ -n "$CHANGES" ]; then
7974
git commit -m "Update READMEs with Terraform Docs."

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Create Release Version
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77

88
jobs:
99
release:

0 commit comments

Comments
 (0)