From 85bdf947020c3f9c24eb9e3ba3a161ffe89a7b1e Mon Sep 17 00:00:00 2001 From: amirzaliyev Date: Thu, 9 Apr 2026 16:40:49 +0500 Subject: [PATCH 1/3] Add GitHub Actions workflow for greetings --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..46774343e --- /dev/null +++ b/.github/workflows/greetings.yml @@ -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" From 5f79a0a6c943296d9fe5de70f57fa3af47ebdefa Mon Sep 17 00:00:00 2001 From: amirzaliyev Date: Thu, 9 Apr 2026 16:44:44 +0500 Subject: [PATCH 2/3] Clarify README content status Updated README to reflect current status of examples. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 43fc9143d..94a88d501 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # Github-Examples A repo containing GitHub for programmatic examples +not an example anymore From 58b25c4ea02a60bed32d51931d6435598c4d56f6 Mon Sep 17 00:00:00 2001 From: amirzaliyev Date: Thu, 9 Apr 2026 17:13:06 +0500 Subject: [PATCH 3/3] gsdfg --- .github/workflows/multi-event.yaml | 0 .github/workflows/multi-event.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/workflows/multi-event.yaml create mode 100644 .github/workflows/multi-event.yml diff --git a/.github/workflows/multi-event.yaml b/.github/workflows/multi-event.yaml new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/multi-event.yml b/.github/workflows/multi-event.yml new file mode 100644 index 000000000..3aa97bbb4 --- /dev/null +++ b/.github/workflows/multi-event.yml @@ -0,0 +1,19 @@ +on: + push: + branches: + - main + - asd + 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" \ No newline at end of file