Skip to content

Commit

Permalink
use remote action
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevader committed May 30, 2024
1 parent b56a796 commit 1a11b3d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push]

jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
uses: baloice-incubator/gitopscli-action/.github/actions/gitopscli/action.yaml@main # Uses an action in the root directory
id: GitOpsCli
with:
command: '-h'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 comments on commit 1a11b3d

Please sign in to comment.