mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
workflow: move committing workflows to schedule (#4529)
This moves all workflows that commit to a schedule, so that it _doesn't_ push into peoples PRs as that enlarges them and is just non-obvious. They run throughout the week. Also change the "user" we use for this, so that DCO believes it a real email address (DCO is pretty stupid here). Update the authors target to filter out this bot as well. Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
11
.github/workflows/go.fmt.yml
vendored
11
.github/workflows/go.fmt.yml
vendored
@@ -1,11 +1,8 @@
|
|||||||
name: Go Fmt
|
name: Go Fmt
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
schedule:
|
||||||
branches:
|
- cron: '22 10 * * 1'
|
||||||
- 'master'
|
|
||||||
paths:
|
|
||||||
- '**.go'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fix:
|
fix:
|
||||||
@@ -23,8 +20,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git config user.name "coredns-auto-go-fmt[bot]"
|
git config user.name "coredns[bot]"
|
||||||
git config user.email "coredns-auto-go-fmt[bot]@users.noreply.github.com"
|
git config user.email "bot@bot.coredns.io"
|
||||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
-
|
-
|
||||||
name: Commit and push changes
|
name: Commit and push changes
|
||||||
|
|||||||
13
.github/workflows/go.tidy.yml
vendored
13
.github/workflows/go.tidy.yml
vendored
@@ -1,13 +1,8 @@
|
|||||||
name: Go Tidy
|
name: Go Tidy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
schedule:
|
||||||
branches:
|
- cron: '22 10 * * 3'
|
||||||
- 'master'
|
|
||||||
paths:
|
|
||||||
- '.github/workflows/go.tidy.yml'
|
|
||||||
- 'go.mod'
|
|
||||||
- 'go.sum'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fix:
|
fix:
|
||||||
@@ -26,8 +21,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git config user.name "coredns-auto-go-mod-tidy[bot]"
|
git config user.name "coredns[bot]"
|
||||||
git config user.email "coredns-auto-go-mod-tidy[bot]@users.noreply.github.com"
|
git config user.email "bot@bot.coredns.io"
|
||||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
-
|
-
|
||||||
name: Commit and push changes
|
name: Commit and push changes
|
||||||
|
|||||||
14
.github/workflows/make.doc.yml
vendored
14
.github/workflows/make.doc.yml
vendored
@@ -1,14 +1,8 @@
|
|||||||
name: Make Doc
|
name: Make Doc
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
schedule:
|
||||||
branches:
|
- cron: '22 10 * * 0'
|
||||||
- 'master'
|
|
||||||
paths:
|
|
||||||
- '.github/workflows/make.doc.yml'
|
|
||||||
- 'coredns.1.md'
|
|
||||||
- 'corefile.5.md'
|
|
||||||
- 'plugin/*/README.md'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fix:
|
fix:
|
||||||
@@ -30,8 +24,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git config user.name "coredns-auto-go-mod-tidy[bot]"
|
git config user.name "coredns[bot]"
|
||||||
git config user.email "coredns-auto-go-mod-tidy[bot]@users.noreply.github.com"
|
git config user.email "bot@bot.coredns.io"
|
||||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
-
|
-
|
||||||
name: Commit and push changes
|
name: Commit and push changes
|
||||||
|
|||||||
11
.github/workflows/whitespace.yml
vendored
11
.github/workflows/whitespace.yml
vendored
@@ -1,11 +1,8 @@
|
|||||||
name: Remove Trailing Whitespaces
|
name: Remove Trailing Whitespaces
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
schedule:
|
||||||
branches:
|
- cron: '22 10 * * 2'
|
||||||
- 'master'
|
|
||||||
paths-ignore:
|
|
||||||
- '**.go'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fix:
|
fix:
|
||||||
@@ -23,8 +20,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git config user.name "coredns-auto-trailing-whitespaces[bot]"
|
git config user.name "coredns[bot]"
|
||||||
git config user.email "coredns-auto-trailing-whitespaces[bot]@users.noreply.github.com"
|
git config user.email "bot@bot.coredns.io"
|
||||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
-
|
-
|
||||||
name: Commit and push changes
|
name: Commit and push changes
|
||||||
|
|||||||
@@ -203,5 +203,5 @@ prs:
|
|||||||
authors:
|
authors:
|
||||||
@echo "## Brought to You By"
|
@echo "## Brought to You By"
|
||||||
@echo
|
@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
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user