17 lines
379 B
YAML
17 lines
379 B
YAML
name: "Tests"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v4
|
|
- name: echo name
|
|
run: echo ${{ github.event.repository.owner.login }}
|
|
- name: Generate Changelog
|
|
uses: spring-io/github-changelog-generator@v0.0.12
|
|
with:
|
|
milestone: '1.0.0' |