Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Add support for GitHub Actions Kotlin DSL #262

Merged
merged 8 commits into from
Aug 3, 2022
16 changes: 16 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- "test/**.js"
- ".nvmrc"
- "action.yml"
- "action-types.yml"
- "index.js"
- "package-lock.json"
- "rollup.config.js"
Expand All @@ -21,6 +22,7 @@ on:
- ".nvmrc"
- "index.js"
- "action.yml"
- "action-types.yml"
- "package-lock.json"
- "rollup.config.js"
- "stryker.config.json"
Expand Down Expand Up @@ -202,3 +204,17 @@ jobs:
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_TOKEN }}
run: npm run test:mutation
validate-action-types:
name: Validate Action Types
runs-on: ubuntu-latest
steps:
- name: Harden runner
uses: step-security/harden-runner@v1.4.4
with:
egress-policy: block
allowed-endpoints: >
github.com:443
- name: Checkout repository
uses: actions/checkout@v3.0.2
- name: Validate Action Types
uses: krzema12/github-actions-typing@v0.5.0
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Versioning].

## [Unreleased]

- _No changes yet_
- Add support for GitHub Actions Kotlin DSL. ([#262])

## [2.0.1] - 2022-07-17

Expand Down Expand Up @@ -115,3 +115,4 @@ Versioning].
[#240]: https://github.com/ericcornelissen/git-tag-annotation-action/pull/240
[#241]: https://github.com/ericcornelissen/git-tag-annotation-action/pull/241
[#254]: https://github.com/ericcornelissen/git-tag-annotation-action/pull/254
[#262]: https://github.com/ericcornelissen/git-tag-annotation-action/pull/262
10 changes: 10 additions & 0 deletions action-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file provides types for "GitHub Actions Kotlin DSL".
# See https://github.com/krzema12/github-actions-kotlin-dsl

inputs:
tag:
type: string

outputs:
git-tag-annotation:
type: string