diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml deleted file mode 100644 index 7a87b53f1..000000000 --- a/.github/workflows/custom-action.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] - -jobs: - my-job: - runs-on: ubuntu-latest - name: A job to say hello - steps: - - name: Hello world action step - id: hello - uses: omenking/barsoom@0.0.6 - with: - name: 'Brown' - # Use the output from the `hello` step - - name: Get the Output - run: echo "The time was ${{ steps.hello.outputs.greeting }}" \ No newline at end of file diff --git a/github-actions/templates/expression-functions.yml b/.github/workflows/expression-functions.yml similarity index 68% rename from github-actions/templates/expression-functions.yml rename to .github/workflows/expression-functions.yml index e213a386b..2926dc0d3 100644 --- a/github-actions/templates/expression-functions.yml +++ b/.github/workflows/expression-functions.yml @@ -24,14 +24,16 @@ jobs: run: echo ${{ format('Hello {0} {1} {2}', 'Mona', 'the', 'Octocat') }} - name: Join issue labels if: github.event_name == 'issues' - run: echo "Issue labels: ${{ join(github.event.issue.labels.*.name, ', ') }}" + run: echo "Issue labels ${{ join(github.event.issue.labels.*.name, ', ') }}" - name: Convert job context to JSON - run: echo "Job context in JSON: ${{ toJSON(github.job) }}" + run: 'echo "Job context in JSON: ${{ toJSON(github.job) }}"' - name: Parse JSON string - run: echo "Parsed JSON: ${{ fromJSON('{"hello":"world"}').hello }}" + run: echo "Parsed JSON ${{ fromJSON('{"hello":"world"}').hello }}" - name: Hash files - run: echo "Hash of files: ${{ hashFiles('**/package-lock.json', '**/Gemfile.lock') }} + run: echo "Hash of files ${{ hashFiles('**/package-lock.json', '**/Gemfile.lock') }}" - name: The job has succeeded if: ${{ success() }} + run: echo "Job ended successfully!" - name: The job has failed - if: ${{ failure() }} \ No newline at end of file + if: ${{ failure() }} + run: echo "Job failed with an error!" \ No newline at end of file diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 000000000..081adf3a6 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +name: Manual Trigger with Params + +on: + workflow_dispatch: + inputs: + name: + description: 'Name of the person to greet' + required: true + type: string + greeting: + description: 'Type of greeting' + required: true + type: string + data: + description: 'Base64 encoded content of a file' + required: false + type: string + +jobs: + greet: + runs-on: ubuntu-latest + steps: + - name: Decode File Content + run: | + echo "${{ inputs.data }}" | base64 --decode > ./decoded_file.txt + - name: Display Greeting + run: | + echo "${{ inputs.greeting }}, ${{ inputs.name }}!" + - name: Display File Content + run: | + echo "Contents of the file:" + cat ./decoded_file.txt \ No newline at end of file diff --git a/github-actions/templates/multi-event.yml b/.github/workflows/multi-event.yml similarity index 92% rename from github-actions/templates/multi-event.yml rename to .github/workflows/multi-event.yml index a3275be38..a5aade2de 100644 --- a/github-actions/templates/multi-event.yml +++ b/.github/workflows/multi-event.yml @@ -1,3 +1,5 @@ +name: Multi-event Trigger + on: push: branches: diff --git a/github-actions/templates/runner-macos.yml b/.github/workflows/runner-macos.yml similarity index 100% rename from github-actions/templates/runner-macos.yml rename to .github/workflows/runner-macos.yml diff --git a/github-actions/templates/runner-windows.yml b/.github/workflows/runner-windows.yml similarity index 93% rename from github-actions/templates/runner-windows.yml rename to .github/workflows/runner-windows.yml index 3b73f2b2e..ec58a44d6 100644 --- a/github-actions/templates/runner-windows.yml +++ b/.github/workflows/runner-windows.yml @@ -2,11 +2,9 @@ name: Windows Workflow Example on: push: - branches: - - main + branches: ["main"] pull_request: - branches: - - main + branches: ["main"] jobs: build-and-test: diff --git a/github-actions/templates/schedule.yml b/.github/workflows/schedule.yml similarity index 86% rename from github-actions/templates/schedule.yml rename to .github/workflows/schedule.yml index a88231de6..9ae566778 100644 --- a/github-actions/templates/schedule.yml +++ b/.github/workflows/schedule.yml @@ -1,6 +1,6 @@ on: schedule: - - cron: '*/5 * * * *' + - cron: '*/2 * * * *' jobs: hello_world: diff --git a/github-actions/templates/webhook.yml b/.github/workflows/webhook.yml similarity index 72% rename from github-actions/templates/webhook.yml rename to .github/workflows/webhook.yml index dbdf1e47d..bb989e410 100644 --- a/github-actions/templates/webhook.yml +++ b/.github/workflows/webhook.yml @@ -9,7 +9,7 @@ jobs: respond-to-dispatch: runs-on: ubuntu-latest steps: - - name Checkout repo + - name: Checkout repo uses: actions/checkout@v2 - name: Run a script - run: echo "Event of type: $GITHUB_EVENT_NAME" + run: echo "Event of type $GITHUB_EVENT_NAME" diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..b242572ef --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] +} \ No newline at end of file diff --git a/github-actions/Readme.me b/github-actions/Readme.me index 9be613aad..4b66001f4 100644 --- a/github-actions/Readme.me +++ b/github-actions/Readme.me @@ -1,7 +1,7 @@ ## Manual Trigger ```sh -gh workflow run greet.yml -f name=mona -f greeting=hello -F data=@myfile.txt +gh workflow run manual.yml -f name=mona -f greeting=hello -F data=@mydata.txt echo '{"name":"mona", "greeting":"hello"}' | gh workflow run greet.yml --json ``` diff --git a/github-actions/mydata b/github-actions/mydata index 1bea4a2ee..28e1eb5ec 100644 --- a/github-actions/mydata +++ b/github-actions/mydata @@ -1 +1 @@ -SGVsbG8gTWFycw== \ No newline at end of file +SGVsbG8gZnJvbSBHSCBBY3Rpb25zIQ== \ No newline at end of file