Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/enforce-design-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: Enforce Design Gate
# This workflow polls https://github.com/orgs/wso2/projects/144 once per day and moves invalid
# feature issues from "Development" back to "Design".
#
# This intentionally uses the built-in GITHUB_TOKEN, not a PAT secret.
# Prerequisite:
# - PROJECT_TOKEN secret with access to read/write the org Project v2 and comment on issues.
on:
schedule:
- cron: '0 2 * * *'
Expand All @@ -21,6 +22,7 @@ jobs:
- name: Revert invalid Projects v2 items to Design
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const PROJECT_OWNER = 'wso2';
const PROJECT_NUMBER = 144;
Expand Down
Loading