Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual #223

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/conditional.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: example-workflow
on: [push]
jobs:
hello-world:
if: github.repository == 'Bhodgkinson94/Github-Examples'
runs-on: ubuntu-latest
steps:
- name: "Hello World"
run: echo "Hello World!"
goodbye-moon:
runs-on: ubuntu-latest
steps:
- name: "Goodbye Moon"
run: echo "Goodbye Moon!"
15 changes: 15 additions & 0 deletions .github/workflows/context.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Context Examples

on: [push]

jobs:
my-context:
runs-on: ubuntu-latest
steps:
- name: My Step
run: |
echo "Action! $MY_ACTION"
echo "Actor! $MY_ACTOR"
env:
MY_ACTION: '${{ github.action }}'
MY_ACTOR: '${{ github.actor }}'
2 changes: 2 additions & 0 deletions .github/workflows/custom-action.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: "Custom Action"

on: [push]

jobs:
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/dependent-jobs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build, Test, and Deploy Workflow

on:
push:
branches:
- main

jobs:
deploy:
needs: [build, test]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deploy application
run: echo "Deploying to production..."
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build application
run: echo "Building the application..."
test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Test application
run: echo "Running tests..."
39 changes: 39 additions & 0 deletions .github/workflows/expression-functions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Expression Functions Demo

on:
push:
branches:
- main
issues:
types: [opened, labeled]

jobs:
expression-functions:
runs-on: ubuntu-latest
steps:
- name: Check if string contains substring
if: contains('Hello world', 'llo')
run: echo "The string contains the substring."
- name: Check if string starts with
if: startsWith('Hello world', 'He')
run: echo "The string starts with 'He'."
- name: Check if string ends with
if: endsWith('Hello world', 'ld')
run: echo "The string ends with 'ld'."
- name: Format and echo string
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, ', ') }}"
- name: Convert job context to JSON
run: "echo \"Job context in JSON: ${{ toJSON(github.job) }}"
- name: Parse JSON string
run: "echo \"Parsed JSON: ${{ fromJSON('{\"hello\":\"world\"}').hello }}"
- name: Hash files
run: "echo \"Hash of files: ${{ hashFiles('**/package-lock.json','**/Gemfile.lock') }}"
- name: The job has succeeded
if: ${{ success() }}
run: echo "SUCCESS!"
- name: The job has failed
if: ${{ failure() }}
run: echo "Failure!"
16 changes: 16 additions & 0 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Dep Jobs Example"

on: ['push']

jobs:
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: StepA
run: echo "World"
job1:
runs-on: ubuntu-latest
steps:
- name: StepB
run: echo "Hello"
32 changes: 32 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -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
21 changes: 21 additions & 0 deletions .github/workflows/multi-event.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Multi Event"

on:
push:
branches:
- main
- dev
pull_request:
branches:
- main

jobs:
hello_world:
runs-on: ubuntu-latest
steps:
- name: "Echo Basic Information"
run: |
echo "REF: $GITHUB_REF"
echo "Job ID: $GITHUB_JOB"
echo "Action: $GITHUB_ACTION"
echo "Actor: $GITHUB_ACTOR"
30 changes: 30 additions & 0 deletions .github/workflows/runner-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: macOS Workflow Example

on:
push:
branches:
- main

jobs:
build-and-test:
runs-on: macos-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Create Swift File
run: |
echo 'print("Hello from Swift on macOS")' > hello.swift

- name: Install dependencies
run: |
brew install swiftlint

- name: Run SwiftLint
run: swiftlint

- name: Compile and run Swift program
run: |
swiftc hello.swift
./hello
35 changes: 35 additions & 0 deletions .github/workflows/runner-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Windows Workflow Example

on:
push:
branches:
- main

jobs:
build-and-test:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: choco install dotnetcore-sdk
shell: powershell

- name: Compile and run C# program
run: |
Add-Content -Path "Hello.cs" -Value @"
using System;
public class Hello
{
public static void Main()
{
Console.WriteLine("Hello, Windows from C#");
}
}
"@
dotnet new console --force --no-restore
Move-Item -Path "Hello.cs" -Destination "Program.cs" -Force
dotnet run
shell: powershell
15 changes: 15 additions & 0 deletions .github/workflows/webhook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Webhook Event example"

on:
repository_dispatch:
types:
- webhook


jobs:
respond-to-dispatch:
runs-on: ubuntu-latest
steps:
- name: Run a script
run: 'echo "Event of type: $GITHUB_EVENT_NAME"'

18 changes: 18 additions & 0 deletions .github/workflows/workflow-commands.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "workflow Commands"
on: ['push']
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: "Group Logging"
run:
echo "::group::My Group Message"
echo "Msg 1"
echo "Msg 2"
echo "::engroup::"
- name: "step 1"
run:
echo "MY_VAL=hello" >> $GITHUB_ENV
- name: "step 2"
run:
echo $MY_VAL