Skip to content

v2.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 14 Apr 03:55
· 1 commit to main since this release
4eca8f2

What's Changed

Features

  • feat(linear): support linear by @azu in #17

Full Changelog: v2.0.0...v2.1.0

Usage

Usage of v2.1.0

name: Update
on:
  push:
    branches:
      - main
  schedule:
    # every 30 minutes
    - cron: "*/30 * * * *"
  workflow_dispatch:
env:
  BLUENOTION_VERSION: v2.1.0

permissions:
  contents: none
jobs:
  update:
    runs-on: ubuntu-latest
    steps:
      - name: Download
        run: |
          curl -L https://github.com/azu/bluenotiondb/releases/download/${{env.BLUENOTION_VERSION}}/bluenotiondb -o bluenotiondb
          chmod +x bluenotiondb
      - name: Update
        run: ./bluenotiondb > /dev/null 2>&1
        env:
          BLUENOTION_ENVS: ${{secrets.BLUENOTION_ENVS}}