Skip to content

Commit

Permalink
Add test starter workflow to see if it appears in a private repo. wor…
Browse files Browse the repository at this point in the history
…kflow search
  • Loading branch information
JohnWMay committed Aug 19, 2022
1 parent 4275c54 commit 7004724
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions workflow-templates/test-template-ccdso-ci.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "VA CCDSO Echo Hello Workflow",
"description": "VA CCDSO Echo Hello starter workflow for testing.",
"iconName": "example-icon",
"categories": [
"linux"
],
"filePatterns": [
".*\\.md$"
]
}
17 changes: 17 additions & 0 deletions workflow-templates/test-template-ccdso-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: VA CCDSO Echo Hello

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run a one-line script
run: echo Hello from VA CCDSO!

0 comments on commit 7004724

Please sign in to comment.