When using a computed or virtual field that refers to other layers's fields having the same name, the wrong value is returned. #53445
This file contains 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
name: Remove Labels | |
on: [issue_comment, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
remove_labels: | |
permissions: | |
issues: write # for actions-ecosystem/action-remove-labels to remove issue labels | |
pull-requests: write # for actions-ecosystem/action-remove-labels to remove PR labels | |
if: contains(github.event.issue.labels.*.name, 'stale') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
if: ${{ github.event.comment.user.url != 'https://github.com/apps/github-actions' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: | | |
stale |