-
Notifications
You must be signed in to change notification settings - Fork 2
zombie mode test added #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
SamarthBengle
wants to merge
2
commits into
develop
Choose a base branch
from
zombie-mode-test
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ updates: | |
schedule: | ||
interval: weekly | ||
time: "04:00" | ||
target-branch: "develop" | ||
open-pull-requests-limit: 10 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,21 @@ | ||
name: Version handling | ||
|
||
name: Release Process | ||
on: | ||
push: | ||
branches: ['release/**', 'release-*'] | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- master | ||
types: [closed] | ||
branches: [master] | ||
|
||
jobs: | ||
version-update: | ||
# This version does not run on self-opened PRs | ||
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login != 'github-actions[bot]' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
# Sets up Java version | ||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-package: jdk | ||
java-version: '8' | ||
# Semantic versioning | ||
- name: Semantic versioning | ||
id: versioning | ||
uses: paulhatch/semantic-version@v5.4.0 | ||
with: | ||
tag_prefix: "" | ||
# A string which, if present in a git commit, indicates that a change represents a | ||
# major (breaking) change, supports regular expressions wrapped with '/' | ||
major_pattern: "(MAJOR)" | ||
# Same as above except indicating a minor change, supports regular expressions wrapped with '/' | ||
minor_pattern: "(MINOR)" | ||
# A string to determine the format of the version output | ||
version_format: "${major}.${minor}.${patch}" | ||
# Check, whether there is an existing branch "version_<version>" or an open PR "version_<version>" -> "master" | ||
# and store the results as environment variables | ||
- name: Check if branch and PR exist | ||
# The second command was copied from https://stackoverflow.com/questions/73812503/github-action-stop-the-action-if-pr-already-exists | ||
run: | | ||
echo VERSION_BRANCH_EXISTS=$(git ls-remote --heads origin refs/heads/version_${{ steps.versioning.outputs.version }} | wc -l) >> $GITHUB_ENV | ||
echo PR_EXISTS=$(gh pr list \ | ||
--repo "$GITHUB_REPOSITORY" \ | ||
--json baseRefName,headRefName \ | ||
--jq ' | ||
map(select(.baseRefName == "master" and .headRefName == "version_${{ steps.versioning.outputs.version }}")) | ||
| length | ||
') >> $GITHUB_ENV | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# If the branch "version_<version>" does not exist, create the branch and update the version in all files | ||
- name: Create branch and update PathExpression version | ||
if: ${{ env.VERSION_BRANCH_EXISTS == '0' }} | ||
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
git checkout -b version_${{ steps.versioning.outputs.version }} | ||
mvn build-helper:parse-version versions:set -DnewVersion=\${{ steps.versioning.outputs.version }} versions:commit | ||
git ls-files | grep 'pom.xml$' | xargs git add | ||
git commit --allow-empty -am "Update PathExpression version to ${{ steps.versioning.outputs.version }}" | ||
git push origin version_${{ steps.versioning.outputs.version }} | ||
# If a PR "version_<version>" -> "master" does not exist, create the PR | ||
- name: Open pull request for version update | ||
if: ${{ env.PR_EXISTS == '0' }} | ||
run: | | ||
gh pr create -B master -H version_${{ steps.versioning.outputs.version }} -t "Update PathExpression version to ${{ steps.versioning.outputs.version }}" -b "This PR was created by the version-update workflow. Please make sure to delete the branch after merging, otherwise future workflows might fail." | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
version-release: | ||
# This job runs only on merged PRs, which were opened by the version-update job | ||
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login == 'github-actions[bot]' }} | ||
handle-version: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
# Semantic versioning | ||
- name: Semantic versioning | ||
id: versioning | ||
uses: paulhatch/semantic-version@v5.4.0 | ||
- uses: secure-software-engineering/actions/version@develop | ||
with: | ||
tag_prefix: "" | ||
# A string which, if present in a git commit, indicates that a change represents a | ||
# major (breaking) change, supports regular expressions wrapped with '/' | ||
major_pattern: "(MAJOR)" | ||
# Same as above except indicating a minor change, supports regular expressions wrapped with '/' | ||
minor_pattern: "(MINOR)" | ||
# A string to determine the format of the version output | ||
version_format: "${major}.${minor}.${patch}" | ||
# Create a tag with the newest version to prepare a release | ||
- name: Create tag for new version | ||
run: | | ||
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | ||
git config --global user.name "${{ github.actor }}" | ||
git tag -a ${{ steps.versioning.outputs.version }} -m "PathExpression version ${{ steps.versioning.outputs.version }}" | ||
git push origin ${{ steps.versioning.outputs.version }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
java_version: '11' | ||
java_distribution: 'temurin' | ||
target_branch: 'master' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Zombie Mode | ||
on: | ||
pull_request: | ||
types: [opened] | ||
branches: [develop] | ||
schedule: | ||
- cron: '0 9 * * MON' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
auto-approve-dependabot: | ||
if: github.actor == 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: secure-software-engineering/actions/dependabot@develop | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
zombie-release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: secure-software-engineering/actions/zombie-mode@develop | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-branch: 'develop' | ||
auto-merge-days: '3' | ||
version-file: 'pom.xml' | ||
|
||
auto-merge-aged: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
steps: | ||
- uses: secure-software-engineering/actions/zombie-mode/zombie-prs-merge@develop | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
age-days: '3' | ||
merge-method: 'squash' | ||
delete-branch: 'true' | ||
zombie-label: 'zombie-mode' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so the day-timeouts get collected on monday as well?