Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Aug 1, 2024
1 parent edc751d commit 63091cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/generate-api-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
generate-api-client:
name: Update API Specs and Client
name: Verify API Specs and Client
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -55,16 +55,5 @@ jobs:
else
echo "Changes detected in the API client directory."
echo "NO_CHANGES_DETECTED=false" >> $GITHUB_ENV
fi
- name: Commit and push changes
if: env.NO_CHANGES_DETECTED == 'false'
run: |
echo "Committing and pushing changes..."
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "chore: update API client"
git push origin HEAD:${{ github.event.pull_request.head.ref }}
echo "Done."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
exit 1
fi
3 changes: 0 additions & 3 deletions webapp/src/app/ui/button/button/button.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ interface ButtonVariants extends VariantProps<typeof buttonVariants> {}
})
export class AppButtonComponent {
class = input<ClassValue>('');
/**
* Text label for the button
*/
variant = input<ButtonVariants['variant']>('default');
size = input<ButtonVariants['size']>('default');
disabled = input<boolean>(false);
Expand Down

0 comments on commit 63091cd

Please sign in to comment.