tet123/.github/workflows/release-contributors-list.yml
dependabot[bot] 6644eeefb9 [ci] Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-05 10:09:29 +02:00

23 lines
530 B
YAML

name: Release Contributors Workflow
on:
workflow_dispatch:
inputs:
tag1:
description: 'From Release Tag(e.g. v1.5.0.CR1)'
required: true
tag2:
description: 'To Release Tag(e.g. v1.5.0.Final)'
required: true
jobs:
script:
runs-on: ubuntu-latest
steps:
- name: Checkout action
uses: actions/checkout@v4
- name: Run script
run: |
./github-support/list-contributors.sh ${{ github.event.inputs.tag1 }} ${{ github.event.inputs.tag2 }}