Skip to content

Commit

Permalink
Chore: Add pattern to gitignore (#4320)
Browse files Browse the repository at this point in the history
# Motivation

The `*.orig` extension is used for some scripts to update candid types
but it's only a temporary file. Some PRs from the bots add all the files
to git and it might include this temporary files.

In this PR, I add the extension to gitignore.

# Changes

* Add `.orig` file extension to gitignore

# Tests

I created `test.orig` file and confirmed that it was ignored by git.

# Todos

- [x] Add entry to changelog (if necessary).
  • Loading branch information
lmuntaner authored Jan 29, 2024
1 parent 2ae5142 commit 8d90733
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ node_modules/
web-assets/
playwright-report/
playwright-results/
*.orig

**/*.rs.bk

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG-Nns-Dapp-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ proposal is successful, the changes it released will be moved from this file to
#### Added

* Add `reviewers` to the `update-*.yml` workflows that create PRs.
* Add `.orig` file extension to `.gitignore` file.

#### Changed

Expand Down

0 comments on commit 8d90733

Please sign in to comment.