Skip to content

Commit

Permalink
chore: Use GitHub Action Workflows from cloudposse/.github Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed May 8, 2024
1 parent 935a902 commit 2eb2711
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 152 deletions.
54 changes: 0 additions & 54 deletions .github/configs/draft-release.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Upstream changes from _extends are only recognized when modifications are made to this file in the default branch.
_extends: .github
repository:
name: github-action-secret-outputs
description: Allow to pass a secret or masked variable between jobs in GitHub Actions using outputs.
homepage: https://cloudposse.com/accelerate
topics: ""
75 changes: 0 additions & 75 deletions .github/workflows/auto-readme.yml

This file was deleted.

15 changes: 8 additions & 7 deletions .github/workflows/feature-branch.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: Feature branch
on:
pull_request:
branches: [ main ]
branches:
- main
- release/v*
types: [opened, synchronize, reopened]

permissions:
contents: write
actions: write

jobs:
perform:
uses: cloudposse/github-actions-workflows-github-action-composite/.github/workflows/feature-branch.yml@main
with:
organization: "${{ github.event.repository.owner.login }}"
repository: "${{ github.event.repository.name }}"
ref: "${{ github.event.pull_request.head.ref }}"
secrets:
github-private-actions-pat: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}"
secrets: inherit
16 changes: 0 additions & 16 deletions .github/workflows/main-branch.yaml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/main-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Main branch
on:
push:
branches:
- main
- release/v*
paths-ignore:
- '.github/**'
- 'docs/**'
- 'examples/**'
- 'test/**'
- 'README.md'

permissions:
contents: write
actions: write

jobs:
perform:
uses: cloudposse/github-actions-workflows-github-action-composite/.github/workflows/main-branch.yml@main
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Release
on:
release:
types: [published]

permissions:
id-token: write
contents: write

jobs:
perform:
uses: cloudposse/github-actions-workflows-github-action-composite/.github/workflows/release.yml@main
secrets: inherit

0 comments on commit 2eb2711

Please sign in to comment.