From 90905b8d695cd0aae686727afd982cb900fd06fa Mon Sep 17 00:00:00 2001 From: P-casey01 <128963885+P-casey01@users.noreply.github.com> Date: Tue, 6 Aug 2024 12:12:10 +0100 Subject: [PATCH 1/3] Create greetings.yml greets commitee on push --- .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 941fddd7bd6b958a6bc1eef3ff80eb4fd1fb3d56 Mon Sep 17 00:00:00 2001 From: P-casey01 <128963885+P-casey01@users.noreply.github.com> Date: Tue, 6 Aug 2024 12:19:13 +0100 Subject: [PATCH 2/3] delete greeting action --- .github/workflows/greetings.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 46774343e..000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,16 +0,0 @@ -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 fd7129d87ac34e53a2e5dd57b9429f14df3cbbf7 Mon Sep 17 00:00:00 2001 From: P-casey01 <128963885+P-casey01@users.noreply.github.com> Date: Tue, 6 Aug 2024 12:19:50 +0100 Subject: [PATCH 3/3] deleted custom.yml file --- .github/workflows/custom-action.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/custom-action.yml diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml deleted file mode 100644 index 7a87b53f1..000000000 --- a/.github/workflows/custom-action.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] - -jobs: - my-job: - runs-on: ubuntu-latest - name: A job to say hello - steps: - - name: Hello world action step - id: hello - uses: omenking/barsoom@0.0.6 - with: - 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