diff --git a/.github/workflows/commands.yml b/.github/workflows/commands.yml new file mode 100644 index 000000000..ed7e965fe --- /dev/null +++ b/.github/workflows/commands.yml @@ -0,0 +1,23 @@ +name: To run diff commands in git actions + +on: + workflow_dispatch + +jobs: + new-job: + runs-on: ubuntu-latest + steps: + - name: Grouping + run: | + echo "::grouping:: Grouped Messages" + echo "msg1" + echo "msg2" + echo "msg3" + echo "::endgroup::" + + - name: Step 1 + run: | + echo "MY_PAT = hello" > $GITHUB_ENV + - name: Step 2 + run: | + echo $MY_PAT diff --git a/.github/workflows/conditional.yml b/.github/workflows/conditional.yml new file mode 100644 index 000000000..64e922b5f --- /dev/null +++ b/.github/workflows/conditional.yml @@ -0,0 +1,28 @@ +name: This is to learn about conditional workflows + +on: pull_request + + +jobs: + first_job: + runs-on: ubuntu-latest + steps: + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Print a constant message + run: echo "Hello this message will be printed irrespective of the message" + + second_job: + if: github.repository == 'ammararsiwala/Github-Examples' + runs-on: ubuntu-latest + steps: + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Print a variable message + run: echo "Hello this message will be printed only if the repo name is correct" + + + + diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml index 7a87b53f1..7b9094aa5 100644 --- a/.github/workflows/custom-action.yml +++ b/.github/workflows/custom-action.yml @@ -1,5 +1,5 @@ -on: [push] - +on: + workflow_dispatch: jobs: my-job: runs-on: ubuntu-latest @@ -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 }}" \ No newline at end of file + run: echo "The time was ${{ steps.hello.outputs.greeting }}" diff --git a/.github/workflows/dependent-jobs.yml b/.github/workflows/dependent-jobs.yml new file mode 100644 index 000000000..48cc07c7c --- /dev/null +++ b/.github/workflows/dependent-jobs.yml @@ -0,0 +1,18 @@ +name: Workflow to learn about dependent jobs + +on: + push + +jobs: + job1: + runs-on: windows-latest + steps: + - run: | + echo "World" + + job2: + runs-on: ubuntu-latest + needs: job1 + steps: + - run: | + echo "Hello" diff --git a/.github/workflows/functions.yml b/.github/workflows/functions.yml new file mode 100644 index 000000000..3d9eeda99 --- /dev/null +++ b/.github/workflows/functions.yml @@ -0,0 +1,23 @@ +name: This workflow is basically used to learn different types of functions + +on: + push + +env: + STR: "Ammar" + SUBSTRING: "mmmmmmmmm" + +jobs: + function-checkers: + runs-on: ubuntu-latest + steps: + - name: Check if string contains sub-strings + env: + l1: ${{ env.STR }} + l2: ${{ env.SUBSTRING }} + if: contains(env.l1, env.l2) + run: echo "Substring present" + + - name: Substring Not Present + if: ${{ !contains(env.l1, env.l2) }} + run: echo "Not Present" diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..4baef03c6 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [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" diff --git a/.github/workflows/manual-worflow.yml b/.github/workflows/manual-worflow.yml new file mode 100644 index 000000000..aa77981cd --- /dev/null +++ b/.github/workflows/manual-worflow.yml @@ -0,0 +1,28 @@ +name: This is to learn the manual dispatch of workflows + +on: + workflow_dispatch: + inputs: + script_name: + required: true + description: 'Please choose the name of the .py you want to execute' + default: "hello.py" + type: choice + options: + - "hello.py" + - "hello_1.py" + - "hello_2.py" + - "hello_3.py" + + +jobs: + manual_dispatch: + runs-on: ubuntu-latest + steps : + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Run Python script + run : python ${{github.event.inputs.script_name}} + + diff --git a/.github/workflows/multi-trigger.yml b/.github/workflows/multi-trigger.yml new file mode 100644 index 000000000..2df325466 --- /dev/null +++ b/.github/workflows/multi-trigger.yml @@ -0,0 +1,15 @@ +name: This is a workflow which has multiple triggers + +on: + workflow_dispatch: + +jobs: + job_name: + runs-on: ubuntu-latest + steps: + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Checking a few commands + run: | + echo "The job id is $GITHUB_JOB" diff --git a/.github/workflows/repo-dispatch.yml b/.github/workflows/repo-dispatch.yml new file mode 100644 index 000000000..07aae5013 --- /dev/null +++ b/.github/workflows/repo-dispatch.yml @@ -0,0 +1,15 @@ +name: Repo-Dispatch-Testing + +on: + repository_dispatch: + types: [my-event] + +jobs: + new-job: + runs-on: ubuntu-latest + steps: + - name: Checking out the code + uses: actions/checkout@v4 + + - name: Checking Which Event + run: echo " The Event is ${{github.event.action}} " diff --git a/.github/workflows/repository-dispatch.yml b/.github/workflows/repository-dispatch.yml new file mode 100644 index 000000000..421ec5ac8 --- /dev/null +++ b/.github/workflows/repository-dispatch.yml @@ -0,0 +1,17 @@ +name: This is to learn how to use repository-dispatch + +on: + repository_dispatch: + types: [webhook] + +jobs: + running-repodispatch: + runs-on: ubuntu-latest + steps: + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Printing the event name + run: echo "The GitHub event is ${{ github.event_name }}" + + diff --git a/.github/workflows/scheduled_jobs.yml b/.github/workflows/scheduled_jobs.yml new file mode 100644 index 000000000..c7d5f2639 --- /dev/null +++ b/.github/workflows/scheduled_jobs.yml @@ -0,0 +1,16 @@ +name: Practise workflow to learn about cron jobs + +on: + schedule: + - cron: "*0 0 1 1 *" + +jobs: + check_workflow: + runs-on: ubuntu-latest + steps: + - name: Code Checkout + uses: actions/checkout@v4 + + - name: Printing the date after every 5 minutes + run: echo " The date at which this workflow is running is ${date}" + diff --git a/.github/workflows/setting-environment-variables.yml b/.github/workflows/setting-environment-variables.yml new file mode 100644 index 000000000..a168527a0 --- /dev/null +++ b/.github/workflows/setting-environment-variables.yml @@ -0,0 +1,18 @@ +name: This is a workflow to test env variables + +on: + workflow_dispatch + +jobs: + test: + runs-on: ubuntu-latest + steps: + + - name: Trying to add a value + run: | + echo "MY_NEW=hello" >> $GITHUB_ENV + + - name: Printing that value + run: | + echo "the value stored in the file is $MY_NEW" + diff --git a/hello.py b/hello.py new file mode 100644 index 000000000..8cde7829c --- /dev/null +++ b/hello.py @@ -0,0 +1 @@ +print("hello world") diff --git a/hello_2.py b/hello_2.py new file mode 100644 index 000000000..30df35c91 --- /dev/null +++ b/hello_2.py @@ -0,0 +1 @@ +print("This is to print hello 2")