diff options
-rw-r--r-- | .github/workflows/go.fmt.yml | 11 | ||||
-rw-r--r-- | .github/workflows/go.tidy.yml | 13 | ||||
-rw-r--r-- | .github/workflows/make.doc.yml | 14 | ||||
-rw-r--r-- | .github/workflows/whitespace.yml | 11 | ||||
-rw-r--r-- | Makefile.release | 2 |
5 files changed, 17 insertions, 34 deletions
diff --git a/.github/workflows/go.fmt.yml b/.github/workflows/go.fmt.yml index 6bff154a2..ae4912593 100644 --- a/.github/workflows/go.fmt.yml +++ b/.github/workflows/go.fmt.yml @@ -1,11 +1,8 @@ name: Go Fmt on: - push: - branches: - - 'master' - paths: - - '**.go' + schedule: + - cron: '22 10 * * 1' jobs: fix: @@ -23,8 +20,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git config user.name "coredns-auto-go-fmt[bot]" - git config user.email "coredns-auto-go-fmt[bot]@users.noreply.github.com" + git config user.name "coredns[bot]" + git config user.email "bot@bot.coredns.io" git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - name: Commit and push changes diff --git a/.github/workflows/go.tidy.yml b/.github/workflows/go.tidy.yml index f93e7d1c1..9fcd81101 100644 --- a/.github/workflows/go.tidy.yml +++ b/.github/workflows/go.tidy.yml @@ -1,13 +1,8 @@ name: Go Tidy on: - push: - branches: - - 'master' - paths: - - '.github/workflows/go.tidy.yml' - - 'go.mod' - - 'go.sum' + schedule: + - cron: '22 10 * * 3' jobs: fix: @@ -26,8 +21,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git config user.name "coredns-auto-go-mod-tidy[bot]" - git config user.email "coredns-auto-go-mod-tidy[bot]@users.noreply.github.com" + git config user.name "coredns[bot]" + git config user.email "bot@bot.coredns.io" git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - name: Commit and push changes diff --git a/.github/workflows/make.doc.yml b/.github/workflows/make.doc.yml index 8dbe16bf3..097f261eb 100644 --- a/.github/workflows/make.doc.yml +++ b/.github/workflows/make.doc.yml @@ -1,14 +1,8 @@ name: Make Doc on: - push: - branches: - - 'master' - paths: - - '.github/workflows/make.doc.yml' - - 'coredns.1.md' - - 'corefile.5.md' - - 'plugin/*/README.md' + schedule: + - cron: '22 10 * * 0' jobs: fix: @@ -30,8 +24,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git config user.name "coredns-auto-go-mod-tidy[bot]" - git config user.email "coredns-auto-go-mod-tidy[bot]@users.noreply.github.com" + git config user.name "coredns[bot]" + git config user.email "bot@bot.coredns.io" git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - name: Commit and push changes diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml index 477723ee5..26f9ba015 100644 --- a/.github/workflows/whitespace.yml +++ b/.github/workflows/whitespace.yml @@ -1,11 +1,8 @@ name: Remove Trailing Whitespaces on: - push: - branches: - - 'master' - paths-ignore: - - '**.go' + schedule: + - cron: '22 10 * * 2' jobs: fix: @@ -23,8 +20,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git config user.name "coredns-auto-trailing-whitespaces[bot]" - git config user.email "coredns-auto-trailing-whitespaces[bot]@users.noreply.github.com" + git config user.name "coredns[bot]" + git config user.email "bot@bot.coredns.io" git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - name: Commit and push changes diff --git a/Makefile.release b/Makefile.release index 8f5534a38..d2078ee54 100644 --- a/Makefile.release +++ b/Makefile.release @@ -203,5 +203,5 @@ prs: authors: @echo "## Brought to You By" @echo - @git log --pretty=format:'%an' $$(git describe --tags --abbrev=0)..master | sort -u | grep -v '^coredns-auto' | grep -v '^dependabot-preview' | \ + @git log --pretty=format:'%an' $$(git describe --tags --abbrev=0)..master | sort -u | grep -v '^coredns-auto' | grep -v '^coredns\[bot\]' | grep -v '^dependabot-preview' | \ tac | cat -n | sed -e 's/^[[:space:]]\+1[[:space:]]\+\(.*\)/\1./' | sed -e 's/^[[:space:]]\+[[:digit:]]\+[[:space:]]\+\(.*\)/\1,/' | tac # comma separate, with dot at the end |