From f642a5a2d4d6038f76b73ed15c6b32213faddce6 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 26 Sep 2021 23:59:38 -0400 Subject: [PATCH] setup basic workflow template --- workflow-templates/xrtk-org-ci.yml | 17 +++++++++++++++++ workflow-templates/xrtk.org.ci.properties.json | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 workflow-templates/xrtk-org-ci.yml create mode 100644 workflow-templates/xrtk.org.ci.properties.json diff --git a/workflow-templates/xrtk-org-ci.yml b/workflow-templates/xrtk-org-ci.yml new file mode 100644 index 0000000..670c274 --- /dev/null +++ b/workflow-templates/xrtk-org-ci.yml @@ -0,0 +1,17 @@ +name: XRTK CI + +on: + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + +jobs: + build: + runs-on: self-hosted + + steps: + - uses: actions/checkout@v2 + + - name: Run a one-line script + run: echo Hello from XRTK Organization diff --git a/workflow-templates/xrtk.org.ci.properties.json b/workflow-templates/xrtk.org.ci.properties.json new file mode 100644 index 0000000..19ec2e2 --- /dev/null +++ b/workflow-templates/xrtk.org.ci.properties.json @@ -0,0 +1,5 @@ +{ + "name": "XRTK Organization Workflow", + "description": "XRTK Organization CI workflow template.", + "iconName": "" +} \ No newline at end of file