🔧 auto cancel at period end when subscription becomes "unpaid" #281
This file contains hidden or 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: Create Tag | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| create-tag: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.CONTENTS_RW_PAT }}" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: "Create main tag" | |
| id: "main" | |
| uses: butlerlogic/[email protected] | |
| with: | |
| tag_prefix: "v" | |
| - name: "Create latest tag" | |
| if: ${{ contains(steps.main.outputs.tagname, 'v') }} | |
| uses: EndBug/latest-tag@latest | |
| - name: "Create js tag" | |
| uses: butlerlogic/[email protected] | |
| with: | |
| root: "/packages/embeds/js" | |
| tag_prefix: "js-v" | |
| - name: "Create react tag" | |
| uses: butlerlogic/[email protected] | |
| with: | |
| root: "/packages/embeds/react" | |
| tag_prefix: "react-v" | |
| - name: "Create nextjs tag" | |
| uses: butlerlogic/[email protected] | |
| with: | |
| root: "/packages/embeds/nextjs" | |
| tag_prefix: "nextjs-v" |