-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: upgraded tooling for autodev repo
- Loading branch information
Showing
25 changed files
with
12,498 additions
and
20,921 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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,56 +1,56 @@ | ||
name: 'AutoDev action' | ||
description: 'Tries to merge all Pull Requests with a specific label to a certain branch.' | ||
name: "AutoDev action" | ||
description: "Tries to merge all Pull Requests with a specific label to a certain branch." | ||
branding: | ||
icon: 'git-merge' | ||
color: 'blue' | ||
icon: "git-merge" | ||
color: "blue" | ||
runs: | ||
using: 'node20' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" | ||
inputs: | ||
token: | ||
required: true | ||
description: GitHub token of the user that fetches the pull requests | ||
base: | ||
required: false | ||
default: 'main' | ||
description: 'This is the base branch. The merge history originates from this branch.' | ||
default: "main" | ||
description: "This is the base branch. The merge history originates from this branch." | ||
label: | ||
required: false | ||
default: 'dev' | ||
description: 'The label where the action will be triggered.' | ||
default: "dev" | ||
description: "The label where the action will be triggered." | ||
branch: | ||
required: false | ||
default: 'dev' | ||
description: 'The branch the action will merge the Pull Requests to.' | ||
default: "dev" | ||
description: "The branch the action will merge the Pull Requests to." | ||
comments: | ||
required: false | ||
default: 'false' | ||
description: 'If true, the action creates a comment on each PR to inform about the status of the dev branch' | ||
default: "false" | ||
description: "If true, the action creates a comment on each PR to inform about the status of the dev branch" | ||
success_comment: | ||
required: false | ||
description: 'Comment string that will be shown in the Pull request on success.' | ||
default: '' | ||
description: "Comment string that will be shown in the Pull request on success." | ||
default: "" | ||
failure_comment: | ||
required: false | ||
description: 'Comment string that will be shown in the Pull request on failure.' | ||
default: '' | ||
description: "Comment string that will be shown in the Pull request on failure." | ||
default: "" | ||
labels: | ||
required: false | ||
default: 'false' | ||
description: 'If true, the action uses labels on each PR to inform about the status of the dev branch.' | ||
default: "false" | ||
description: "If true, the action uses labels on each PR to inform about the status of the dev branch." | ||
success_label: | ||
required: false | ||
description: 'Label string that will be add on the Pull request on success.' | ||
default: 'successful' | ||
description: "Label string that will be add on the Pull request on success." | ||
default: "successful" | ||
failure_label: | ||
required: false | ||
description: 'Label string that will be add on the Pull request on failure.' | ||
default: 'failed' | ||
description: "Label string that will be add on the Pull request on failure." | ||
default: "failed" | ||
user: | ||
required: false | ||
default: 'AutoDev Action' | ||
description: 'Name of the user which does the git commit.' | ||
default: "AutoDev Action" | ||
description: "Name of the user which does the git commit." | ||
email: | ||
required: false | ||
default: '[email protected]' | ||
description: 'E-Mail of the user which does the git commit.' | ||
default: "[email protected]" | ||
description: "E-Mail of the user which does the git commit." |
Oops, something went wrong.