Skip to content

Commit 81ea135

Browse files
authored
chore: Replace Makefile with atmos.yaml (#62)
1 parent 368a421 commit 81ea135

File tree

6 files changed

+57
-11
lines changed

6 files changed

+57
-11
lines changed

.github/workflows/test-negative.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
# # Added pull_request to register workflow from the PR.
66
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
77
# pull_request: {}
8-
workflow_dispatch: {}
9-
8+
workflow_dispatch:
9+
inputs:
10+
ref:
11+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
12+
required: false
13+
type: "string"
14+
sha:
15+
description: "The sha of the commit that triggered the workflow run"
16+
required: false
17+
type: "string"
1018
jobs:
1119
setup:
1220
runs-on: ubuntu-latest

.github/workflows/test-non-matrix.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
# # Added pull_request to register workflow from the PR.
66
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
77
# pull_request: {}
8-
workflow_dispatch: {}
9-
8+
workflow_dispatch:
9+
inputs:
10+
ref:
11+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
12+
required: false
13+
type: "string"
14+
sha:
15+
description: "The sha of the commit that triggered the workflow run"
16+
required: false
17+
type: "string"
1018
jobs:
1119
setup:
1220
runs-on: ubuntu-latest

.github/workflows/test-positive.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
# # Added pull_request to register workflow from the PR.
66
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
77
# pull_request: {}
8-
workflow_dispatch: {}
9-
8+
workflow_dispatch:
9+
inputs:
10+
ref:
11+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
12+
required: false
13+
type: "string"
14+
sha:
15+
description: "The sha of the commit that triggered the workflow run"
16+
required: false
17+
type: "string"
1018
jobs:
1119
setup:
1220
runs-on: ubuntu-latest

.github/workflows/test-reusable-workflow.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
# # Added pull_request to register workflow from the PR.
66
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
77
# pull_request: {}
8-
workflow_dispatch: {}
9-
8+
workflow_dispatch:
9+
inputs:
10+
ref:
11+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
12+
required: false
13+
type: "string"
14+
sha:
15+
description: "The sha of the commit that triggered the workflow run"
16+
required: false
17+
type: "string"
1018
jobs:
1119
setup:
1220
uses: cloudposse/github-action-matrix-outputs-write/.github/workflows/setup-test.yml@main

.github/workflows/test-special-chars.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ on:
77
# pull_request: {}
88
workflow_dispatch:
99
inputs:
10-
paths:
10+
sha:
11+
description: "The sha of the commit that triggered the workflow run"
12+
required: false
13+
type: "string" ref:
14+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
15+
required: false
16+
type: "string" paths:
1117
description: 'A multiline yaml string of key/value pairs for each Name and Path to include in the comment'
1218
required: false
1319
default: |

.github/workflows/test-validation.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
# # Added pull_request to register workflow from the PR.
66
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
77
# pull_request: {}
8-
workflow_dispatch: {}
9-
8+
workflow_dispatch:
9+
inputs:
10+
ref:
11+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
12+
required: false
13+
type: "string"
14+
sha:
15+
description: "The sha of the commit that triggered the workflow run"
16+
required: false
17+
type: "string"
1018
jobs:
1119
setup:
1220
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)