Skip to content

Commit

Permalink
Change text button
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesdevelop committed Jul 12, 2024
1 parent 5ea5d66 commit eb9da7c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/git-flow-build-feature.yml
Original file line number Diff line number Diff line change
@@ -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."
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Image from "next/image";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<Button>Testando git-flow</Button>
<Button>Olá git-flow</Button>
</main>
);
}

0 comments on commit eb9da7c

Please sign in to comment.