Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/dotCMS/core into issue-24482
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyDotcms committed Oct 5, 2023
2 parents 478fd99 + 3f81f03 commit b56f586
Show file tree
Hide file tree
Showing 405 changed files with 60,331 additions and 3,493 deletions.
4 changes: 4 additions & 0 deletions .github/actions/issue-fetcher/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
lib/
node_modules/
src/@types/
17 changes: 17 additions & 0 deletions .github/actions/issue-fetcher/.eslintrc.json
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
}
}
23 changes: 23 additions & 0 deletions .github/actions/issue-fetcher/action.yml
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'
Loading

0 comments on commit b56f586

Please sign in to comment.