Remove API changes in test-infra decouple refactor #9877
Workflow file for this run
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
# | |
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You 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: Component Check | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
paths: | |
- 'parent/**' | |
- 'core/**' | |
- 'components/**' | |
permissions: {} | |
jobs: | |
process: | |
if: github.repository == 'apache/camel' | |
permissions: | |
pull-requests: write # to comment on a pull request | |
actions: read # to download artifact | |
name: Process | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
if: | | |
github.event_name == 'pull_request_target' && | |
(github.event.action == 'opened' || | |
github.event.action == 'reopened') | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `:star2: Thank you for your contribution to the Apache Camel project! :star2: | |
:robot: CI automation will test this PR automatically. | |
:camel: Apache Camel Committers, please review the following items: | |
* First-time contributors **require MANUAL approval** for the GitHub Actions to run | |
* You can use the command \`/component-test (camel-)component-name1 (camel-)component-name2..\` to request a test from the test bot. | |
* You can label PRs using \`build-all\`, \`build-dependents\`, \`skip-tests\` and \`test-dependents\` to fine-tune the checks executed by this PR. | |
* Build and test logs are available in the Summary page. **Only** [Apache Camel committers](https://camel.apache.org/community/team/#committers) have access to the summary. | |
* :warning: Be careful when sharing logs. Review their contents before sharing them publicly.` | |
}) |