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

Create greetings.yml #198

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
21e4332
Create greetings.yml
sgotluru Jan 10, 2025
ca1587e
add new schedule.yml file
sgotluru Jan 10, 2025
9195605
add multi event trigger yml
sgotluru Jan 10, 2025
2daf547
trigger a new change in dev branch
sgotluru Jan 10, 2025
c87bc16
Merge pull request #1 from sgotluru/dev
sgotluru Jan 10, 2025
b09e6ca
add .gitignore to exclude Visual Studio Code files
sgotluru Jan 10, 2025
41776ad
remove .gitignore and add manual trigger workflow with parameters
sgotluru Jan 10, 2025
4d5dba8
remove obsolete workflow files and add webhook event example
sgotluru Jan 11, 2025
fdba2d7
update webhook event type from 'custom_webhook' to 'webhook'
sgotluru Jan 11, 2025
0d097ed
fix formatting in webhook script execution
sgotluru Jan 11, 2025
5557635
fix: update echo command syntax in webhook workflow
sgotluru Jan 11, 2025
da48f48
fix: comment out checkout step in webhook workflow
sgotluru Jan 11, 2025
ac4963b
feat: add example workflow with hello world and goodbye moon jobs
sgotluru Jan 11, 2025
7a94910
fix: update repository condition in example workflow
sgotluru Jan 11, 2025
258d1dc
feat: add expression functions demo workflow with various string chec…
sgotluru Jan 11, 2025
ed3c915
fix: comment out issues trigger in expression functions workflow
sgotluru Jan 11, 2025
3fa1eec
fix: uncomment issues trigger and comment out unused steps in express…
sgotluru Jan 11, 2025
b387365
fix: uncomment and correct handling of expressions in expression func…
sgotluru Jan 11, 2025
08449a4
chore: remove deprecated workflow files for expression functions and …
sgotluru Jan 11, 2025
c10d1e9
chore: remove macOS and Windows workflow examples
sgotluru Jan 11, 2025
f9cb0a7
feat: add workflow commands for logging group messages
sgotluru Jan 11, 2025
f7397fb
feat: add additional steps to workflow_commands.yml for enhanced func…
sgotluru Jan 11, 2025
207eaa1
fix: adjust indentation for consistency in workflow_commands.yml
sgotluru Jan 11, 2025
1f9b6f8
chore: remove obsolete self-hosted runner and workflow commands files
sgotluru Jan 11, 2025
41f924f
fix: update job context output to use correct GitHub run ID
sgotluru Jan 11, 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
23 changes: 23 additions & 0 deletions .github/workflows/context.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Context Example Workflow

on: [push]

jobs:
example-job:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Print GitHub context
run: "echo \"Repository: ${{ github.repository }}\""

- name: Print Job context
run: "echo \"Job ID: ${{ github.run_id }}\""

- name: Print Runner context
run: "echo \"Runner OS: ${{ runner.os }}\""

- name: Print Secrets context
run: "echo \"Secret Token: ${{ secrets.GITHUB_TOKEN }}\""
15 changes: 0 additions & 15 deletions .github/workflows/custom-action.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Github-Examples
A repo containing GitHub for programmatic examples

## This is to check if it can trigger my workflow