https://github.com/virtusize/actions-global-library
this is a github actions library to be used across multiple virtusize repos
https://github.com/virtusize/actions-global-library
Last synced: 5 months ago
JSON representation
this is a github actions library to be used across multiple virtusize repos
- Host: GitHub
- URL: https://github.com/virtusize/actions-global-library
- Owner: virtusize
- Created: 2022-06-13T08:46:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T06:46:24.000Z (almost 4 years ago)
- Last Synced: 2025-05-17T18:11:08.956Z (about 1 year ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github actions global library
## Versions
You can specify the version you want to use by the github tag in this repo.
`virtusize/actions-global-library/.github/workflows/changelog.yml@v2.0.0` If `v2.0.0` exists as tag.
#### Examples
- **Golang:** [compile + release notes](https://github.com/virtusize/terraform-provider-clickhouse/blob/main/.github/workflows/release.yml)
## Usage
```yml
...
jobs:
...
release-notes:
name: 'Create release notes from CHANGELOG.md'
uses: virtusize/actions-global-library/.github/workflows/release-notes.yml
...
changelog:
name: 'Changelog release'
uses: virtusize/actions-global-library/.github/workflows/changelog.yml
needs: [release-notes, example-job]
with:
update-changelog: false
...
```