From 5d5500145e572930dc74e24dbab677f8403c0ef9 Mon Sep 17 00:00:00 2001 From: santiagosayshey Date: Fri, 28 Jun 2024 09:38:35 +0930 Subject: [PATCH] removed: testing and complete workflows --- .github/workflows/add-to-testing.yml | 117 ------------------------- .github/workflows/item-complete.yml | 122 --------------------------- 2 files changed, 239 deletions(-) delete mode 100644 .github/workflows/add-to-testing.yml delete mode 100644 .github/workflows/item-complete.yml diff --git a/.github/workflows/add-to-testing.yml b/.github/workflows/add-to-testing.yml deleted file mode 100644 index 85aee45..0000000 --- a/.github/workflows/add-to-testing.yml +++ /dev/null @@ -1,117 +0,0 @@ -name: Set Issue Status to Testing on Merge to Dev - -on: - pull_request: - branches: - - dev - types: - - closed - -jobs: - update-status: - if: ${{ github.event.pull_request.merged }} - runs-on: ubuntu-latest - steps: - - name: Extract Issue Number from Branch Name - id: extract-issue-number - run: | - ISSUE_NUMBER=$(echo ${{ github.event.pull_request.head.ref }} | cut -d'-' -f1) - echo "Issue Number extracted: $ISSUE_NUMBER" - echo "ISSUE_NUMBER=$ISSUE_NUMBER" >> $GITHUB_ENV - - - name: Get project item ID - id: get-project-item-id - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - PROJECT_ID: "PVT_kwDOCjbMFM4AjuUh" - run: | - echo "Fetching project item ID for issue number: $ISSUE_NUMBER" - QUERY=' - query fetchProjectItem($project: ID!) { - node(id: $project) { - ... on ProjectV2 { - items(first: 100) { - nodes { - id - content { - ... on Issue { - number - } - } - } - } - } - } - }' - item_id=$(gh api graphql -f query="$QUERY" -f project=$PROJECT_ID --jq '.data.node.items.nodes[] | select(.content.number == '"$ISSUE_NUMBER"') | .id') - if [ -z "$item_id" ]; then - echo "Error: Project item ID not found for issue number $ISSUE_NUMBER" - exit 1 - else - echo "Project item ID found: $item_id" - echo "PROJECT_ITEM_ID=$item_id" >> $GITHUB_ENV - fi - - - name: Get single select field ID and options - id: get-field-options - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - PROJECT_ID: "PVT_kwDOCjbMFM4AjuUh" - run: | - echo "Fetching field ID and options for status" - QUERY=' - query($project:ID!) { - node(id: $project) { - ... on ProjectV2 { - fields(first: 100) { - nodes { - ... on ProjectV2SingleSelectField { - id - name - options { - id - name - } - } - } - } - } - } - }' - field_data=$(gh api graphql -f query="$QUERY" -f project=$PROJECT_ID --jq '.data.node.fields.nodes[] | select(.name == "Status")') - field_id=$(echo $field_data | jq -r '.id') - testing_option_id=$(echo $field_data | jq -r '.options[] | select(.name == "Testing") | .id') - if [ -z "$field_id" ] || [ -z "$testing_option_id" ]; then - echo "Error: Field ID or Testing option ID not found" - exit 1 - else - echo "Field ID: $field_id" - echo "Testing option ID: $testing_option_id" - echo "FIELD_ID=$field_id" >> $GITHUB_ENV - echo "TESTING_OPTION_ID=$testing_option_id" >> $GITHUB_ENV - fi - - - name: Set status to Testing - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - PROJECT_ITEM_ID: ${{ env.PROJECT_ITEM_ID }} - FIELD_ID: ${{ env.FIELD_ID }} - TESTING_OPTION_ID: ${{ env.TESTING_OPTION_ID }} - run: | - echo "Setting status for Project Item ID: ${PROJECT_ITEM_ID}" - result=$(gh api graphql -f query=' - mutation($project:ID!, $item:ID!, $fieldId:ID!, $value:String!) { - updateProjectV2ItemFieldValue(input: { - projectId: $project - itemId: $item - fieldId: $fieldId - value: { - singleSelectOptionId: $value - } - }) { - projectV2Item { - id - } - } - }' -f project="PVT_kwDOCjbMFM4AjuUh" -f item="${PROJECT_ITEM_ID}" -f fieldId="${FIELD_ID}" -f value="${TESTING_OPTION_ID}") - echo "Set status result: $result" diff --git a/.github/workflows/item-complete.yml b/.github/workflows/item-complete.yml deleted file mode 100644 index c376076..0000000 --- a/.github/workflows/item-complete.yml +++ /dev/null @@ -1,122 +0,0 @@ -name: Update Issues to Complete on Merge to Main - -on: - pull_request: - branches: - - main - types: - - closed - -jobs: - update-issues-status: - if: ${{ github.event.pull_request.merged && github.event.pull_request.head.ref == 'x' }} - runs-on: ubuntu-latest - steps: - - name: Get all issues with status "Testing" - id: get-testing-issues - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - PROJECT_ID: "PVT_kwDOCjbMFM4AjuUh" - run: | - echo "Fetching all issues with status 'Testing'" - QUERY=' - query($project:ID!) { - node(id: $project) { - ... on ProjectV2 { - items(first: 100) { - nodes { - id - content { - ... on Issue { - number - } - } - fieldValues(first: 10) { - nodes { - ... on ProjectV2ItemFieldSingleSelectValue { - name - field { - ... on ProjectV2SingleSelectField { - name - } - } - } - } - } - } - } - } - } - }' - items=$(gh api graphql -f query="$QUERY" -f project=$PROJECT_ID --jq '.data.node.items.nodes[] | select(.fieldValues.nodes[] | select(.name == "Testing")) | .id') - items=$(echo $items | tr '\n' ' ') - echo "Items with 'Testing' status: $items" - echo "TESTING_ITEMS=$items" >> $GITHUB_ENV - - - name: Get single select field ID and option ID for "Complete" - id: get-complete-option-id - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - PROJECT_ID: "PVT_kwDOCjbMFM4AjuUh" - run: | - echo "Fetching field ID and options for status" - QUERY=' - query($project:ID!) { - node(id: $project) { - ... on ProjectV2 { - fields(first: 100) { - nodes { - ... on ProjectV2SingleSelectField { - id - name - options { - id - name - } - } - } - } - } - } - }' - field_data=$(gh api graphql -f query="$QUERY" -f project=$PROJECT_ID --jq '.data.node.fields.nodes[] | select(.name == "Status")') - field_id=$(echo $field_data | jq -r '.id') - complete_option_id=$(echo $field_data | jq -r '.options[] | select(.name == "Complete") | .id') - if [ -z "$field_id" ] || [ -z "$complete_option_id" ]; then - echo "Error: Field ID or Complete option ID not found" - exit 1 - else - echo "Field ID: $field_id" - echo "Complete option ID: $complete_option_id" - echo "FIELD_ID=$field_id" >> $GITHUB_ENV - echo "COMPLETE_OPTION_ID=$complete_option_id" >> $GITHUB_ENV - fi - - - name: Set status to Complete for all items - if: steps.get-testing-issues.outputs.TESTING_ITEMS != '' - env: - GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - FIELD_ID: ${{ env.FIELD_ID }} - COMPLETE_OPTION_ID: ${{ env.COMPLETE_OPTION_ID }} - TESTING_ITEMS: ${{ steps.get-testing-issues.outputs.TESTING_ITEMS }} - run: | - IFS=' ' read -ra items <<< "$TESTING_ITEMS" - for item in "${items[@]}"; do - echo "Setting status to Complete for Project Item ID: $item" - result=$(gh api graphql -f query=' - mutation($project:ID!, $item:ID!, $fieldId:ID!, $value:String!) { - updateProjectV2ItemFieldValue(input: { - projectId: $project - itemId: $item - fieldId: $fieldId - value: { - singleSelectOptionId: $value - } - }) { - projectV2Item { - id - } - } - }' -f project="PVT_kwDOCjbMFM4AjuUh" -f item="$item" -f fieldId="${FIELD_ID}" -f value="${COMPLETE_OPTION_ID}") - echo "Set status result: $result" - done