This is an automated email from the ASF dual-hosted git repository. yiconghuang pushed a commit to branch revert-3835-chore/ci/assign-author-of-pr in repository https://gitbox.apache.org/repos/asf/texera.git
commit 859c2b0bae40b06dc7b6216552acc90abf79aec9 Author: Yicong Huang <[email protected]> AuthorDate: Tue Oct 7 23:28:51 2025 -0400 Revert "chore(ci): automatically assign an author of a PR (#3835)" This reverts commit 257fbe04c5fad2f6aedc5fd4e488be1a5642915c. --- .github/workflows/{pr-automation.yml => pr-labeler.yml} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-automation.yml b/.github/workflows/pr-labeler.yml similarity index 79% rename from .github/workflows/pr-automation.yml rename to .github/workflows/pr-labeler.yml index e53f0134e0..d074cc9b5a 100644 --- a/.github/workflows/pr-automation.yml +++ b/.github/workflows/pr-labeler.yml @@ -14,21 +14,18 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: "Pull Request Automation" +name: "Pull Request Labeler" on: - pull_request_target jobs: - pull_request_automation: + labeler: permissions: contents: read pull-requests: write runs-on: ubuntu-latest steps: - - name: Assign author to PR - uses: technote-space/assign-author@v1 - - name: Assign labels - uses: actions/labeler@v6 + - uses: actions/labeler@v6 with: - sync-labels: true + sync-labels: true
