Skip to content

Commit ed25674

Browse files
authored
Issue 31906 GitHub action customer deployed (dotCMS#31971)
### Proposed Changes * change 1 * change 2 ### Checklist - [ ] Tests - [ ] Translations - [ ] Security Implications Contemplated (add notes if applicable) ### Additional Info ** any additional useful context or info ** ### Screenshots Original | Updated :-------------------------:|:-------------------------: ** original screenshot ** | ** updated screenshot **
1 parent cf3fc26 commit ed25674

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/label_issues_customer_deployed.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
- name: Add Customer Deployed Labels
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37-
GITHUB_TOKEN_DOTCMS: ${{ secrets.GITHUB_TOKEN_DOTCMS }}
3837
run: |
3938
# Determine the release label
4039
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then

scripts/dev-metrics/add_customer_deployed_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def add_label(self, issue_number, label):
6262
def main():
6363
logger.info("Starting to add 'Customer Deployed' label to issues...")
6464

65-
token = os.getenv('GITHUB_TOKEN_DOTCMS')
65+
token = os.getenv('GITHUB_TOKEN')
6666
if not token:
6767
raise ValueError("Please set GITHUB_TOKEN environment variable")
6868

0 commit comments

Comments
 (0)