diff --git a/.github/workflows/github_tag_and_release.yml b/.github/workflows/github_tag_and_release.yml index 69a18b0..7012a25 100644 --- a/.github/workflows/github_tag_and_release.yml +++ b/.github/workflows/github_tag_and_release.yml @@ -1,8 +1,9 @@ +--- name: Tag -on: +on: # yamllint disable-line rule:truthy pull_request: - types: + types: - closed jobs: @@ -11,7 +12,7 @@ jobs: name: Tag semantic version runs-on: ubuntu-latest steps: - - name: Tag + - name: Tag uses: K-Phoen/semver-release-action@v1.3.1 with: release_branch: main diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index e4de67b..3748f57 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -1,6 +1,6 @@ --- name: reviewdog -on: +on: # yamllint disable-line rule:truthy push: jobs: @@ -16,3 +16,14 @@ jobs: with: github_token: ${{ secrets.github_token }} reporter: github-check + + yamllint: + name: runner / yamllint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: yamllint + uses: reviewdog/action-yamllint@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-check diff --git a/action.yml b/action.yml index 4353abb..c6ee8e7 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,8 @@ +--- name: 'Container Action Template' description: 'Get started with Container actions' author: 'GitHub' -inputs: +inputs: myInput: description: 'Input to use' default: 'world'