-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into chore/exam-import-client-migration
# Conflicts: # src/main/webapp/app/exam/manage/exam-management.module.ts # src/test/javascript/spec/component/exam/manage/exam-import.component.spec.ts
- Loading branch information
Showing
1,017 changed files
with
15,602 additions
and
12,487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,79 +18,3 @@ jobs: | |
token: ${{ secrets.GH_TOKEN_ADD_TO_PROJECT }} | ||
tag: pr-${{ github.event.pull_request.number }} | ||
untagged-older-than: 28 | ||
|
||
# If a PR is closed the testserver lock should be removed and corresponding badges updated | ||
process_labels: | ||
name: Process labels | ||
runs-on: ubuntu-latest | ||
outputs: | ||
labels: ${{ steps.process.outputs.labels }} | ||
badges: ${{ steps.process.outputs.badges }} | ||
steps: | ||
- name: Process labels | ||
id: process | ||
uses: actions/github-script@v7 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
script: | | ||
const labelsToRemove = []; | ||
const labelsToProcess = []; | ||
// Get the PR number | ||
const prNumber = context.payload.pull_request.number; | ||
// Iterate through labels on the PR | ||
for (const label of context.payload.pull_request.labels) { | ||
const labelName = label.name; | ||
const regex = /^lock:artemis-test(\d+)$/; | ||
if (regex.test(labelName)) { | ||
// Extract the part after "lock:" using capture groups | ||
const extractedLabel = labelName.match(regex)[1]; | ||
labelsToProcess.push(extractedLabel); | ||
labelsToRemove.push(labelName); | ||
} | ||
} | ||
// Do something with the extracted labels | ||
console.log('Badges to process:', labelsToProcess); | ||
console.log('Labels to remove:', labelsToRemove); | ||
// Use the labelsToRemove array to remove the matching labels | ||
core.setOutput('badges', JSON.stringify(labelsToProcess)); | ||
core.setOutput('labels', labelsToRemove.join(', ')); | ||
remove_labels: | ||
name: Remove labels | ||
needs: process_labels | ||
runs-on: ubuntu-latest | ||
if: ${{ needs.process_labels.outputs.labels != '' }} | ||
|
||
steps: | ||
- name: Remove labels | ||
uses: actions-ecosystem/action-remove-labels@v1 | ||
with: | ||
labels: ${{ needs.process_labels.outputs.labels }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
update_badges: | ||
name: Update badges | ||
needs: process_labels | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
badge: ${{ fromJson(needs.process_labels.outputs.badges) }} | ||
if: ${{ needs.process_labels.outputs.labels != '' }} | ||
|
||
steps: | ||
- name: Update badge | ||
uses: RubbaBoy/[email protected] | ||
with: | ||
NAME: "artemis-test${{ matrix.badge }}" | ||
LABEL: "artemis-test${{ matrix.badge }}.artemis.cit.tum.de" | ||
STATUS: ${{ github.event.pull_request.head.ref }} | ||
COLOR: green | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.