-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(release): adding steps to automated release process to relabel iss…
…ues involved in release Introducing release steps to remove label from issues with 'Next Release' and 'Release yy.mm.dd' label to such. Refs: #25818
- Loading branch information
1 parent
48e537d
commit 57baff5
Showing
13 changed files
with
51,919 additions
and
11 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ | ||
src/@types/ |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"plugins": ["@typescript-eslint", "github", "jest"], | ||
"extends": ["plugin:github/typescript"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 9, | ||
"sourceType": "module", | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
}, | ||
"env": { | ||
"node": true, | ||
"es6": true, | ||
"jest/globals": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# action.yml | ||
name: 'Issue Fetcher' | ||
description: 'Fetches issues from a repository' | ||
author: 'victoralfaro-dotcms' | ||
inputs: | ||
fetch_operation: | ||
description: 'Operation to perform on how to get the issues' | ||
type: choice | ||
options: | ||
- WITH_LABELS | ||
required: true | ||
fetch_value: | ||
description: 'Value to use to fetch the issues' | ||
required: true | ||
github_token: | ||
description: 'Github token' | ||
required: true | ||
outputs: | ||
issues: | ||
description: 'Fetched issues' | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' |
Oops, something went wrong.