Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jul 11, 2022
1 parent 479827d commit 8435d70
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/actions/pipeline-config-scrapper/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: 'Pipeline Config Scrapper'
description: 'Analize current event trigger and indicates paths and configs'

runs:
using: 'node16'
main: 'index.js'

inputs:
containerRegistry:
required: false
Expand All @@ -15,3 +11,7 @@ outputs:
time: # id of output
description: 'The time we greeted you'

runs:
using: 'node16'
main: 'index.js'

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
"main": "",
"scripts": {
"commit": "npm run build && git pull && git commit --allow-empty -am \"fix: empty commit for testing\" && git push",
"build-action": "ncc build src/actions/$ACTION_NAME/index.js -m -q -s -o .github/actions/$ACTION_NAME && rm -f .github/actions/$ACTION_NAME/action.yml && cp src/actions/$ACTION_NAME/action.yml .github/actions/$ACTION_NAME/action.yml",
"build": "npm run action:pipeline-config-scrapper",
"action:pipeline-config-scrapper": "ACTION_NAME=pipeline-config-scrapper npm run build-action"
"build-action-js": "ncc build src/actions/$ACTION_NAME/index.js -m -q -s -o .github/actions/$ACTION_NAME && rm -f .github/actions/$ACTION_NAME/action.yml && cp src/actions/$ACTION_NAME/action.yml .github/actions/$ACTION_NAME/action.yml",
"build": "npm run action:pipeline-config-scrapper && npm run action:setup-binaries",
"action:pipeline-config-scrapper": "ACTION_NAME=pipeline-config-scrapper npm run build-action-js",
"action:setup-binaries": "mkdir -p .github/actions/setup-binaries && cp src/actions/setup-binaries/action.yml .github/actions/setup-binaries/action.yml"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions src/actions/pipeline-config-scrapper/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: 'Pipeline Config Scrapper'
description: 'Analize current event trigger and indicates paths and configs'

runs:
using: 'node16'
main: 'index.js'

inputs:
containerRegistry:
required: false
Expand All @@ -15,3 +11,7 @@ outputs:
time: # id of output
description: 'The time we greeted you'

runs:
using: 'node16'
main: 'index.js'

0 comments on commit 8435d70

Please sign in to comment.