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 18, 2022
1 parent b8611bd commit e78fcea
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/actions/config-scrapper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ outputs:
description: ""
build_tags:
description: ""
build_labels:
description: ""
commiter_name:
description: ""
commiter_email:
Expand Down
10 changes: 8 additions & 2 deletions .github/actions/setup-binaries/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: 'Setup binaries'
description: 'Greet someone'
description: 'Setup a list of dependencies with one action'

inputs:
# config
token:
description: 'GitHub Token'
required: false

# apps
docker-qmeu:
description: 'Install'
required: false
Expand Down Expand Up @@ -68,7 +74,7 @@ runs:
id: ytt
with:
only: ytt
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{inputs.token}}

- if: inputs.yq != 'false'
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
#--------------------------------------------------#
# TRIGGER #
# Trigger #
#--------------------------------------------------#
Trigger:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -289,6 +289,7 @@ jobs:
- name: Setup | Dependencies
uses: filipeforattini/ff-iac-github-actions/.github/actions/setup-binaries@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
docker-qmeu: true
docker-buildx: true
kubectl: true
Expand Down
2 changes: 2 additions & 0 deletions src/actions/config-scrapper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ outputs:
description: ""
build_tags:
description: ""
build_labels:
description: ""
commiter_name:
description: ""
commiter_email:
Expand Down
10 changes: 8 additions & 2 deletions src/actions/setup-binaries/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: 'Setup binaries'
description: 'Greet someone'
description: 'Setup a list of dependencies with one action'

inputs:
# config
token:
description: 'GitHub Token'
required: false

# apps
docker-qmeu:
description: 'Install'
required: false
Expand Down Expand Up @@ -68,7 +74,7 @@ runs:
id: ytt
with:
only: ytt
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{inputs.token}}

- if: inputs.yq != 'false'
shell: bash
Expand Down

0 comments on commit e78fcea

Please sign in to comment.