Skip to content

Commit f290cfb

Browse files
committed
chore: Replace Makefile with atmos.yaml
1 parent c3a312a commit f290cfb

7 files changed

Lines changed: 42 additions & 32 deletions

File tree

.github/workflows/test-file-input.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-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-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/tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
name: "units-test"
22
on:
3-
pull_request:
3+
workflow_dispatch:
4+
inputs:
5+
ref:
6+
description: "The fully-formed ref of the branch or tag that triggered the workflow run"
7+
required: false
8+
type: "string"
9+
sha:
10+
description: "The sha of the commit that triggered the workflow run"
11+
required: false
12+
type: "string" pull_request:
413
push:
514
branches:
615
- main

Makefile

Lines changed: 0 additions & 6 deletions
This file was deleted.

atmos.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import:
2+
- https://raw.githubusercontent.com/cloudposse/.github/refs/heads/main/.github/atmos/github-action.yaml

docs/github-action.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)