Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
d92ef1f4
Commit
d92ef1f4
authored
Jun 16, 2025
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] label released issues workflow: don't override release tag if it exists
parent
9c4c16ac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
label-issues-in-release.yml
.github/workflows/label-issues-in-release.yml
+10
-4
No files found.
.github/workflows/label-issues-in-release.yml
View file @
d92ef1f4
...
...
@@ -57,7 +57,7 @@ jobs:
outputs
:
issues
:
${{ steps.linked_issues.outputs.result }}
steps
:
-
name
:
Getting tags of the two latest
est
releases
-
name
:
Getting tags of the two latest releases
id
:
tags
uses
:
actions/github-script@v7
env
:
...
...
@@ -192,6 +192,11 @@ jobs:
number
title
closed
labels(first: 5) {
nodes {
description
}
}
}
}
}
...
...
@@ -215,6 +220,7 @@ jobs:
const issues = associatedPullRequests
.nodes
.filter(({ closingIssuesReferences: { nodes: issues } }) => !issues?.some(({ labels }) => labels?.nodes?.some(({ description }) => description.toLowerCase().startsWith('release'))))
.map(({ closingIssuesReferences: { nodes: issues } }) => issues.map(({ number }) => number))
.flat();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment