Skip to content

fix(deps): bump golang from fcae9e0 to 829eff9 in /cmd/rule-evaluator #2069

fix(deps): bump golang from fcae9e0 to 829eff9 in /cmd/rule-evaluator

fix(deps): bump golang from fcae9e0 to 829eff9 in /cmd/rule-evaluator #2069

# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Auto Assign PR
# This job triggers privileged auto-assign job in secure manner.
# See: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
schedule:
runs-on: ubuntu-latest
steps:
- name: Pass parameters to Auto Assign job
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v4
with:
name: auto-assign-pr
path: pr/
- run: echo "Scheduled!"