public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anna Vyalkova" <cyber+gentoo@sysrq.in>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: .github/workflows/
Date: Sun, 23 Apr 2023 14:54:00 +0000 (UTC)	[thread overview]
Message-ID: <1682261553.8784e6fe4b907b60267aa7115f62cf2e17fde970.cybertailor@gentoo> (raw)

commit:     8784e6fe4b907b60267aa7115f62cf2e17fde970
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Apr 23 14:39:38 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Apr 23 14:52:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8784e6fe

.github/workflows/emails.yml: switch from archived action

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 .github/workflows/emails.yml | 37 ++++++++++++++++++++-----------------
 1 file changed, 20 insertions(+), 17 deletions(-)

diff --git a/.github/workflows/emails.yml b/.github/workflows/emails.yml
index 7ce288f2a..159483328 100644
--- a/.github/workflows/emails.yml
+++ b/.github/workflows/emails.yml
@@ -12,12 +12,10 @@ jobs:
   bugzilla:
     runs-on: ubuntu-latest
     steps:
-      - uses: nrwl/last-successful-commit-action@v1
-        id: last_successful_commit
+      - name: Setup Python
+        uses: actions/setup-python@v4
         with:
-          branch: 'dev'
-          workflow_id: 'emails.yml'
-          github_token: ${{ secrets.GITHUB_TOKEN }}
+          python-version: 3.x
 
       - name: Checkout repo
         uses: actions/checkout@v3
@@ -25,31 +23,36 @@ jobs:
           ref: dev
           fetch-depth: 0
 
-      - uses: actions/setup-python@v3
-        with:
-          python-version: 3.x
-
-      - name: Validate compare commit
+      - name: Get compare commit
         run: |
-          if git rev-parse --verify "${{ steps.last_successful_commit.outputs.commit_hash }}^{commit}"; then
-            echo "is_commit_valid=true" >> ${GITHUB_ENV}
+          COMMIT=$(gh run list -R ${GITHUB_REPOSITORY} --branch=dev --workflow=emails.yml --status=success --limit=1 --json=headSha --jq=".[0].headSha")
+          echo "last_successful_commit=${COMMIT}" >> "${GITHUB_ENV}"
+          echo "Workflow last succeeded on commit ${COMMIT:0:7}"
+
+          if git rev-parse --verify "${COMMIT}^{commit}"; then
+            echo -e "\033[92m\u2713 ${COMMIT:0:7} points to a valid commit"
+            VALID=true
           else
-            echo "is_commit_valid=false" >> ${GITHUB_ENV}
+            echo -e "\033[91m\u2717 ${COMMIT:0:7} doesn't point to a valid commit"
+            VALID=false
           fi
+          echo "is_commit_valid=${VALID}" >> "${GITHUB_ENV}"
+        env:
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 
       - name: Get changed files
-        id: changed-files
         if: ${{ fromJSON(env.is_commit_valid) }}
         uses: tj-actions/changed-files@v35
         with:
-          base_sha: ${{ steps.last_successful_commit.outputs.commit_hash }}
+          base_sha: ${{ env.last_successful_commit }}
+          write_output_files: true
           files: |
             **/metadata.xml
 
-      - name: Check Emails against bugzilla
+      - name: Check emails against Bugzilla
         if: ${{ fromJSON(env.is_commit_valid) }}
         run: |
-          python ./scripts/email-checker.py ${{ steps.changed-files.outputs.all_changed_files }}
+          python ./scripts/email-checker.py < .github/outputs/all_changed_files.txt
 
       - name: Inform on IRC
         if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }}


             reply	other threads:[~2023-04-23 14:54 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-23 14:54 Anna Vyalkova [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-15 18:17 [gentoo-commits] repo/proj/guru:dev commit in: .github/workflows/ Takuya Wakazono
2025-03-15 18:17 Takuya Wakazono
2024-10-26 13:58 Takuya Wakazono
2024-04-18 18:04 Anna Vyalkova
2024-04-12 12:37 Anna Vyalkova
2023-06-14 10:14 Anna Vyalkova
2023-05-18  8:21 Anna Vyalkova
2023-04-23 14:14 Anna Vyalkova
2023-04-23 12:24 Anna Vyalkova
2023-04-23 12:15 Anna Vyalkova
2023-04-23 12:06 Anna Vyalkova
2023-04-20 15:20 Anna Vyalkova
2023-03-31 15:28 Anna Vyalkova
2023-03-17 11:42 Arthur Zamarin
2023-01-13 21:36 Julien Roy
2022-10-07 15:39 Arthur Zamarin
2022-04-14 13:39 Andrew Ammerlaan
2022-04-06 18:07 Arthur Zamarin
2021-02-18 11:23 Andrew Ammerlaan
2021-02-18 11:15 Andrew Ammerlaan
2021-02-16  7:52 Theo Anderson
2021-01-29 10:59 Andrew Ammerlaan
2021-01-28 11:01 Andrew Ammerlaan
2021-01-19 21:57 Andrew Ammerlaan
2021-01-19 21:18 Andrew Ammerlaan
2021-01-03 10:07 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1682261553.8784e6fe4b907b60267aa7115f62cf2e17fde970.cybertailor@gentoo \
    --to=cyber+gentoo@sysrq.in \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox