Test fail #272
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2024 Myra <vasilis@pikachu.systems> | |
| # SPDX-FileCopyrightText: 2024 Saphire Lattice <lattice@saphi.re> | |
| # SPDX-FileCopyrightText: 2024 Vasilis <vasilis@pikachu.systems> | |
| # SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| #name: "Labels: Approved" | |
| # | |
| #on: | |
| # pull_request_review: | |
| # types: [submitted] | |
| # | |
| #jobs: | |
| # add_label: | |
| # # Change the repository name after you've made sure the team name is correct for your fork! | |
| # if: ${{ (github.repository == 'Goob-Station/Goob-Station') && (github.event.review.state == 'APPROVED') }} | |
| # permissions: | |
| # contents: read | |
| # pull-requests: write | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: tspascoal/get-user-teams-membership@v3 | |
| # id: checkUserMember | |
| # with: | |
| # username: ${{ github.actor }} | |
| # team: "maintainers" | |
| # GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| # - if: ${{ steps.checkUserMember.outputs.isTeamMember == 'true' }} | |
| # uses: actions-ecosystem/action-add-labels@v1 | |
| # with: | |
| # labels: "S: Approved" |