Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GitHub Action Workflows from cloudposse/.github Repo #84

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 0 additions & 53 deletions .github/auto-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-setup-atmos
description: A GitHub Actions that installs the Atmos CLI
homepage: https://cloudposse.com/accelerate
topics: ""
75 changes: 0 additions & 75 deletions .github/workflows/auto-readme.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/auto-release.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/feature-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature branch
on:
pull_request:
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
secrets: inherit
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
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Release

on:
release:
types:
- published
types: [published]

permissions:
id-token: write
contents: write

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: cloudposse/github-action-major-release-tagger@v1
perform:
uses: cloudposse/github-actions-workflows-github-action-composite/.github/workflows/release.yml@main
secrets: inherit
Loading