Skip to content

changed scheduled tasks to 1 time in a month #4

changed scheduled tasks to 1 time in a month

changed scheduled tasks to 1 time in a month #4

Workflow file for this run

name: Notes_CI-CD_SCD_A2_Releases
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: conventional changelog action
id: changelog
uses: TriPSs/conventional-changelog-action@v3.7.1
with:
github-token: ${{secrets.CHANGELOG_RELEASE}}
- name: create release
uses: actions/create-release@v1
if: ${{steps.changelog.outputs.skipped == 'false'}}
env:
GITHUB_TOKEN: ${{secrets.CHANGELOG_RELEASE}}
with:
tag_name: ${{steps.changelog.outputs.tag}}
release_name: ${{steps.changelog.outputs.tag}}
body: ${{steps.changelog.outputs.clean_changelog}}