diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 28358d2b..14a98d7c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -102,7 +102,7 @@ body: label: Are you contributing for a program ? multiple: true options: - - GSSoC2023 + - GSSoC2024 - Other validations: required: true diff --git a/.github/ISSUE_TEMPLATE/doc.yml b/.github/ISSUE_TEMPLATE/doc.yml index d88d5ae2..39f9ebfa 100644 --- a/.github/ISSUE_TEMPLATE/doc.yml +++ b/.github/ISSUE_TEMPLATE/doc.yml @@ -32,7 +32,7 @@ body: description: Please select the program you are contributing for. multiple: true options: - - GSSoC2023 + - GSSoC2024 - Other validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 030ce59b..7bee5647 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -50,7 +50,7 @@ body: label: Are you contributing for a program? multiple: true options: - - GSSoC2023 + - GSSoC2024 - Other validations: required: true diff --git a/.github/advanced-issue-labeler.yml b/.github/advanced-issue-labeler.yml index 8038baeb..440c7186 100644 --- a/.github/advanced-issue-labeler.yml +++ b/.github/advanced-issue-labeler.yml @@ -7,5 +7,5 @@ policy: - id: ['contribution'] block-list: ['Other'] label: - - name: 'gssoc23' - keys: ['GSSoc23', 'GSSoC2023', 'GSSoC 2023', 'GSSoC 23', 'GSSoC-2023', 'GSSoC-23'] \ No newline at end of file + - name: 'gssoc24' + keys: ['GSSoc24', 'GSSoC2024', 'GSSoC 2024', 'GSSoC 24', 'GSSoC-2024', 'GSSoC-24'] \ No newline at end of file diff --git a/.github/workflows/add-label-issues.yml b/.github/workflows/add-label-issues.yml index b60aa4e6..6dcb9402 100644 --- a/.github/workflows/add-label-issues.yml +++ b/.github/workflows/add-label-issues.yml @@ -24,7 +24,7 @@ jobs: with: template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }} - - name: Add 'gssoc23' label to Issues based on policy + - name: Add 'gssoc24' label to Issues based on policy uses: redhat-plumbers-in-action/advanced-issue-labeler@v2 with: issue-form: ${{ steps.issue-parser.outputs.jsonString }} diff --git a/.github/workflows/add-label-prs.yml b/.github/workflows/add-label-prs.yml index 6699f73e..6ee0f11b 100644 --- a/.github/workflows/add-label-prs.yml +++ b/.github/workflows/add-label-prs.yml @@ -14,14 +14,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Add 'gssoc23' Label to PRs + - name: Add 'gssoc24' Label to PRs uses: actions/github-script@v4 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | const { owner, repo } = context.repo; const prNumber = context.payload.pull_request.number; - const label = 'gssoc23'; + const label = 'gssoc24'; const addLabelParams = { owner: owner, @@ -32,4 +32,4 @@ jobs: await github.issues.addLabels(addLabelParams); - console.log(`Added the 'gssoc23' label to PR #${prNumber}.`); + console.log(`Added the 'gssoc24' label to PR #${prNumber}.`);