Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.workflow 258B

1234567891011121314
  1. workflow "Autorebase branch on merge commits" {
  2. on = "push"
  3. resolves = ["rebase"]
  4. }
  5. workflow "Autorebase PR on merge commits" {
  6. on = "pull_request"
  7. resolves = ["rebase"]
  8. }
  9. action "rebase" {
  10. uses = "ljharb/rebase@latest"
  11. secrets = ["GITHUB_TOKEN"]
  12. }