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