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

Go-back #243

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
75e2bd1
Create greetings.yml
AnEpicDoor Jan 10, 2025
570725d
added cron every 2 minutes
AnEpicDoor Jan 10, 2025
592b06b
Update custom-action.yml
AnEpicDoor Jan 10, 2025
8306c2e
Update custom-action.yml
AnEpicDoor Jan 10, 2025
37d7fce
Update custom-action.yml
AnEpicDoor Jan 10, 2025
e9f4fc4
Update schedule.yml
AnEpicDoor Jan 10, 2025
e9732d2
Update schedule.yml
AnEpicDoor Jan 10, 2025
366c169
Update custom-action.yml
AnEpicDoor Jan 10, 2025
6ec96ca
Update schedule.yml
AnEpicDoor Jan 10, 2025
81bf085
Update schedule.yml
AnEpicDoor Jan 11, 2025
c8120d3
Update schedule.yml
AnEpicDoor Jan 11, 2025
0ffd413
multi-event template
AnEpicDoor Jan 11, 2025
0e2387e
trigger workflow on dev
AnEpicDoor Jan 11, 2025
129bf15
Merge pull request #1 from AnEpicDoor/dev
AnEpicDoor Jan 11, 2025
8fe915f
manual wokflow
AnEpicDoor Jan 28, 2025
8a0e73a
add webhook
AnEpicDoor Mar 4, 2025
f00260c
add custom webhook
AnEpicDoor Mar 4, 2025
8de736c
fixed syntax
AnEpicDoor Mar 4, 2025
ca872be
more fixes
AnEpicDoor Mar 4, 2025
41935cb
try again
AnEpicDoor Mar 4, 2025
9f6163e
try again
AnEpicDoor Mar 4, 2025
f9850a5
try again x2
AnEpicDoor Mar 4, 2025
be50df9
please work
AnEpicDoor Mar 4, 2025
bfd98b1
Create dispatches
AnEpicDoor Mar 4, 2025
61d925e
conditional
AnEpicDoor Mar 10, 2025
2d8af2b
trigger other condition
AnEpicDoor Mar 10, 2025
a91b568
1
AnEpicDoor Mar 10, 2025
b10d0b3
1
AnEpicDoor Mar 10, 2025
075ff8d
1
AnEpicDoor Mar 10, 2025
dc3f8af
test runners
AnEpicDoor Mar 10, 2025
dd079d1
try gain
AnEpicDoor Mar 10, 2025
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 == 'AnEpicDoor/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!"
4 changes: 2 additions & 2 deletions .github/workflows/custom-action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [push]
on: [pull_request_target]

jobs:
my-job:
Expand All @@ -12,4 +12,4 @@ jobs:
name: 'Brown'
# Use the output from the `hello` step
- name: Get the Output
run: echo "The time was ${{ steps.hello.outputs.greeting }}"
run: echo "The time was ${{ steps.hello.outputs.greeting }}"
34 changes: 34 additions & 0 deletions .github/workflows/expression-functions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Expression Functions Demo

on:
push:
branches:
- main

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: 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/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Greetings

on: [pull_request_target, issues]

jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Message that will be displayed on users' first issue"
pr-message: "Message that will be displayed on users' first pull request"
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
19 changes: 19 additions & 0 deletions .github/workflows/multi-event.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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
38 changes: 38 additions & 0 deletions .github/workflows/runner-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Windows Workflow Example

on:
push:
branches:
- main
pull_request:
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
11 changes: 11 additions & 0 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Run job every 5 minutes
on:
schedule:
- cron: '*/5 * * * *'

jobs:
hello_world:
runs-on: ubuntu-latest
steps:
- name: Echo current time
run: echo "The current server time is $(date)"
13 changes: 13 additions & 0 deletions .github/workflows/webhook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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"'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Github-Examples
A repo containing GitHub for programmatic examples
example edit
119 changes: 119 additions & 0 deletions actions-runner/_diag/Runner_20250310-132120-utc.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
[2025-03-10 13:21:20Z INFO HostContext] No proxy settings were found based on environmental variables (http_proxy/https_proxy/HTTP_PROXY/HTTPS_PROXY)
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'Credentials': '/workspaces/Github-Examples/actions-runner/.credentials'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'Runner': '/workspaces/Github-Examples/actions-runner/.runner'
[2025-03-10 13:21:20Z INFO Listener] Runner is built for Linux (X64) - linux-x64.
[2025-03-10 13:21:20Z INFO Listener] RuntimeInformation: Ubuntu 20.04.6 LTS.
[2025-03-10 13:21:20Z INFO Listener] Version: 2.322.0
[2025-03-10 13:21:20Z INFO Listener] Commit: 0edc478ca75d0a753dcbcec7405f3f26db67b1ac
[2025-03-10 13:21:20Z INFO Listener] Culture:
[2025-03-10 13:21:20Z INFO Listener] UI Culture:
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO Listener] Validating directory permissions for: '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO CommandLineParser] Parse
[2025-03-10 13:21:20Z INFO CommandLineParser] Parsing 1 args
[2025-03-10 13:21:20Z INFO CommandLineParser] parsing argument
[2025-03-10 13:21:20Z INFO CommandLineParser] HasArgs: False
[2025-03-10 13:21:20Z INFO CommandLineParser] Adding Command: run
[2025-03-10 13:21:20Z INFO Listener] Arguments parsed
[2025-03-10 13:21:20Z INFO Runner] ExecuteCommand
[2025-03-10 13:21:20Z INFO ConfigurationStore] currentAssemblyLocation: /workspaces/Github-Examples/actions-runner/bin/Runner.Listener.dll
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO ConfigurationStore] binPath: /workspaces/Github-Examples/actions-runner/bin
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO ConfigurationStore] RootFolder: /workspaces/Github-Examples/actions-runner
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'Runner': '/workspaces/Github-Examples/actions-runner/.runner'
[2025-03-10 13:21:20Z INFO ConfigurationStore] ConfigFilePath: /workspaces/Github-Examples/actions-runner/.runner
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'Credentials': '/workspaces/Github-Examples/actions-runner/.credentials'
[2025-03-10 13:21:20Z INFO ConfigurationStore] CredFilePath: /workspaces/Github-Examples/actions-runner/.credentials
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'MigratedCredentials': '/workspaces/Github-Examples/actions-runner/.credentials_migrated'
[2025-03-10 13:21:20Z INFO ConfigurationStore] MigratedCredFilePath: /workspaces/Github-Examples/actions-runner/.credentials_migrated
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'Service': '/workspaces/Github-Examples/actions-runner/.service'
[2025-03-10 13:21:20Z INFO ConfigurationStore] ServiceConfigFilePath: /workspaces/Github-Examples/actions-runner/.service
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'help': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'version': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'commit': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'check': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Command 'configure': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Command 'remove': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Command 'warmup': 'False'
[2025-03-10 13:21:20Z INFO ConfigurationManager] LoadSettings
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured()
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured: True
[2025-03-10 13:21:20Z INFO ConfigurationManager] Is configured: True
[2025-03-10 13:21:20Z INFO ConfigurationStore] Read setting file: 303 chars
[2025-03-10 13:21:20Z INFO ConfigurationManager] Settings Loaded
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsServiceConfigured()
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsServiceConfigured: False
[2025-03-10 13:21:20Z INFO CommandSettings] Command 'run': 'True'
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured()
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured: True
[2025-03-10 13:21:20Z INFO ConfigurationManager] Is configured: True
[2025-03-10 13:21:20Z INFO Runner] Could not parse the argument value '' for StartupType. Defaulting to Manual
[2025-03-10 13:21:20Z INFO Runner] Set runner startup type - Manual
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'once': 'False'
[2025-03-10 13:21:20Z INFO CommandSettings] Flag 'once': 'False'
[2025-03-10 13:21:20Z INFO Runner] RunAsync
[2025-03-10 13:21:20Z INFO ConfigurationManager] LoadSettings
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured()
[2025-03-10 13:21:20Z INFO ConfigurationStore] IsConfigured: True
[2025-03-10 13:21:20Z INFO ConfigurationManager] Is configured: True
[2025-03-10 13:21:20Z INFO ConfigurationManager] Settings Loaded
[2025-03-10 13:21:20Z INFO MessageListener] {
"AgentId": 21,
"AgentName": "enterprise",
"PoolId": 1,
"PoolName": "Default",
"ServerUrl": "https://pipelinesghubeus6.actions.githubusercontent.com/VpNZBfzdoDkFeECWtWcj3f0X7m8gwgXXTFqf7IzaFlHtsCOIwr/",
"GitHubUrl": "https://github.com/AnEpicDoor/Github-Examples",
"WorkFolder": "_work"
}
[2025-03-10 13:21:20Z INFO MessageListener] Loading Credentials
[2025-03-10 13:21:20Z INFO ConfigurationStore] HasCredentials()
[2025-03-10 13:21:20Z INFO ConfigurationStore] stored True
[2025-03-10 13:21:20Z INFO CredentialManager] GetCredentialProvider
[2025-03-10 13:21:20Z INFO CredentialManager] Creating type OAuth
[2025-03-10 13:21:20Z INFO CredentialManager] Creating credential type: OAuth
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Bin': '/workspaces/Github-Examples/actions-runner/bin'
[2025-03-10 13:21:20Z INFO HostContext] Well known directory 'Root': '/workspaces/Github-Examples/actions-runner'
[2025-03-10 13:21:20Z INFO HostContext] Well known config file 'RSACredentials': '/workspaces/Github-Examples/actions-runner/.credentials_rsaparams'
[2025-03-10 13:21:20Z INFO RSAFileKeyManager] Loading RSA key parameters from file /workspaces/Github-Examples/actions-runner/.credentials_rsaparams
[2025-03-10 13:21:20Z INFO MessageListener] Attempt to create session.
[2025-03-10 13:21:20Z INFO MessageListener] Connecting to the Runner Server...
[2025-03-10 13:21:20Z INFO RunnerServer] EstablishVssConnection
[2025-03-10 13:21:20Z INFO RunnerServer] Establish connection with 100 seconds timeout.
[2025-03-10 13:21:20Z INFO GitHubActionsService] Starting operation Location.GetConnectionData
[2025-03-10 13:21:20Z INFO RunnerServer] EstablishVssConnection
[2025-03-10 13:21:20Z INFO RunnerServer] Establish connection with 60 seconds timeout.
[2025-03-10 13:21:20Z INFO GitHubActionsService] Starting operation Location.GetConnectionData
[2025-03-10 13:21:20Z INFO RunnerServer] EstablishVssConnection
[2025-03-10 13:21:20Z INFO RunnerServer] Establish connection with 60 seconds timeout.
[2025-03-10 13:21:20Z INFO GitHubActionsService] Starting operation Location.GetConnectionData
[2025-03-10 13:21:21Z INFO GitHubActionsService] Finished operation Location.GetConnectionData
[2025-03-10 13:21:21Z INFO GitHubActionsService] Finished operation Location.GetConnectionData
[2025-03-10 13:21:21Z INFO GitHubActionsService] Finished operation Location.GetConnectionData
[2025-03-10 13:21:21Z INFO MessageListener] VssConnection created
[2025-03-10 13:21:21Z INFO Terminal] WRITE LINE:
[2025-03-10 13:21:21Z INFO Terminal] WRITE LINE:
[2025-03-10 13:21:21Z INFO RSAFileKeyManager] Loading RSA key parameters from file /workspaces/Github-Examples/actions-runner/.credentials_rsaparams
[2025-03-10 13:21:21Z INFO RSAFileKeyManager] Loading RSA key parameters from file /workspaces/Github-Examples/actions-runner/.credentials_rsaparams
[2025-03-10 13:21:21Z INFO GitHubActionsService] AAD Correlation ID for this token request: Unknown
[2025-03-10 13:21:21Z INFO MessageListener] Session created.
[2025-03-10 13:21:21Z INFO Terminal] WRITE LINE: Current runner version: '2.322.0'
[2025-03-10 13:21:21Z INFO Terminal] WRITE LINE: 2025-03-10 13:21:21Z: Listening for Jobs
[2025-03-10 13:21:21Z INFO JobDispatcher] Set runner/worker IPC timeout to 30 seconds.
[2025-03-10 13:21:22Z INFO RSAFileKeyManager] Loading RSA key parameters from file /workspaces/Github-Examples/actions-runner/.credentials_rsaparams
[2025-03-10 13:21:22Z INFO GitHubActionsService] AAD Correlation ID for this token request: Unknown
Loading