From c3c654d3f8ed29a798a3f98a84016014b6b2600c Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 6 Oct 2020 22:14:00 +0530 Subject: [PATCH] Adds workflow files for testing --- .github/labeler.yml | 2 ++ .github/workflows/label-prs.yml | 13 +++++++++++++ .github/workflows/publish-records.yml | 11 +++++++++++ 3 files changed, 26 insertions(+) create mode 100644 .github/labeler.yml create mode 100644 .github/workflows/label-prs.yml create mode 100644 .github/workflows/publish-records.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..0016e7f9a --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,2 @@ +domain: + - domains/*.json diff --git a/.github/workflows/label-prs.yml b/.github/workflows/label-prs.yml new file mode 100644 index 000000000..ef7131523 --- /dev/null +++ b/.github/workflows/label-prs.yml @@ -0,0 +1,13 @@ +# https://github.com/actions/labeler + +name: Maintainence +on: pull_request + +jobs: + label: + runs-on: ubuntu-latest + steps: + - name: Labelling pull request + uses: actions/labeler@v2 + with: + repo-token: "${{secrets.GITHUB_TOKEN}}" diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml new file mode 100644 index 000000000..a65fd8897 --- /dev/null +++ b/.github/workflows/publish-records.yml @@ -0,0 +1,11 @@ +name: Publish records + +on: + workflow_dispatch: + name: 'Publish all records' + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - run: echo "Hello yo"