18758 - update readme, fix weekly report issue, update cronjob.yaml (… #602
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Draft release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
draft-release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=release-name::Payment Services $(date +'%B, %Y') Release" | |
- uses: release-drafter/release-drafter@v5 | |
with: | |
name: "${{ steps.date.outputs.release-name }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |