From 3c138c6194b950ce681980334d0790c85d98a789 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Mon, 1 Feb 2021 14:24:24 -0800 Subject: [PATCH] Setup chronicler to generate changelogs. (#430) --- .github/workflows/main.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..d123643 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,28 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Chronicler Action + # You may pin to the exact commit or the version. + # uses: crosscompile/chronicler-action@5c25dbce26b0789724a92902c69217b46f023b51 + uses: crosscompile/chronicler-action@v1.0.1