Skip to content

No default value for acl attribute in s3 object #1371

No default value for acl attribute in s3 object

No default value for acl attribute in s3 object #1371

name: "Pull Request Feed"
on:
pull_request_target:
types: [opened, closed]
env:
SLACK_WEBHOOK_URL: ${{ secrets.FEED_SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
GH_TOKEN: ${{ github.token }}
jobs:
community_check:
uses: ./.github/workflows/community-check.yml
secrets: inherit
NotificationPRMerged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Notification PR Merged
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":merged: <${{ github.event.pull_request.merged_by.html_url }}|${{ github.event.pull_request.merged_by.login }}> merged <${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
}
]
}
NotificationMaintainerPROpened:
needs: community_check
runs-on: ubuntu-latest
steps:
- name: Notification Maintainer PR Opened
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844
if: github.event.action == 'opened' && needs.community_check.outputs.maintainer == 'true' && github.actor != 'dependabot[bot]'
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":open: <${{ github.event.pull_request.user.html_url }}|${{ github.event.pull_request.user.login }}> opened <${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
}
]
}
NotificationPartnerPROpened:
needs: community_check
runs-on: ubuntu-latest
steps:
- name: Notification Partner PR Opened
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844
if: github.event.action == 'opened' && needs.community_check.outputs.partner == 'true'
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":open: :aws: contributor <${{ github.event.pull_request.user.html_url }}|${{ github.event.pull_request.user.login }}> opened <${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
}
]
}
- name: Apply Partner Label
if: github.event.action == 'opened' && needs.community_check.outputs.partner == 'true'
run: |
gh api repos/${{ github.repository_owner }}/${{ github.event.repository.name }}/issues/${{ github.event.pull_request.number }}/labels \
-f "labels[]=partner"