diff --git a/.github/workflows/git-flow-build-feature.yml b/.github/workflows/git-flow-build-feature.yml new file mode 100644 index 0000000..51bdc83 --- /dev/null +++ b/.github/workflows/git-flow-build-feature.yml @@ -0,0 +1,17 @@ +name: Build (FEATURE) + +on: + push: + branches: + - feature/* + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Run a one-line script + run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." diff --git a/src/app/page.tsx b/src/app/page.tsx index 4e90e42..26f2861 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import Image from "next/image"; export default function Home() { return (
- +
); }