Skip to content

Commit

Permalink
Merge branch 'master' into fetch-last-udf-epp
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Jan 20, 2025
2 parents bf95f9a + cc0c236 commit 0d160e8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 7 deletions.
6 changes: 0 additions & 6 deletions .github/pr_labels.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/check_pr_label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check Label on PR
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled]

jobs:
check_pr_label:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for all branches and tags

- name: Check if the PR contains the label validation or no validation
id: check_pr_label
if: |
! contains( github.event.pull_request.labels.*.name, 'validation') && ! contains( github.event.pull_request.labels.*.name, 'no validation')
run: |
echo "Neither 'validation' nor 'no validation' labels are present."
exit 1 # Exit with a failure
10 changes: 9 additions & 1 deletion VERSIONLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## 20241220.1

Introduce EPP to fetch last recorded derived sample UDF.
Rebuild EPP to fetch last recorded derived sample UDF.

## 20250116.1

Ruff 0.9.2 formatting.

## 20250108.1

Replace PR Label checker with a less opaque action.

## 20241211.1

Expand Down

0 comments on commit 0d160e8

Please sign in to comment.