You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix update process to only flag helpers as executable (#499)
**Why?**
Multiple files were marked as executable without a specific reason to be
executable. A permission change in our repository easily goes unnoticed when
a pull request is opened.
**What?**
With this change, we keep track of the files that should be marked executable
and only flag those as such. If a file would end up in the ADF repo with the
wrong permissions, this will not get replicated to the bootstrap / pipelines
repository as managed in ADF user environments.
This change also updates the permissions of files that were marked executable
without a good reason to be executable.
Copy file name to clipboardExpand all lines: src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/lambda_codebase/initial_commit/initial_commit.py
+46-10Lines changed: 46 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
"""
2
-
The Initial Commit main that is called when ADF is installed to commit the initial bootstrap repository content
2
+
The Initial Commit main that is called when ADF is installed to commit the
Review this PR to understand what changes will be made to your bootstrapping repository. If you also made changes to the repository yourself, you might have to resolve merge conflicts before you can merge this PR.
34
+
This PR was automatically created when you deployed version {0} of the
35
+
AWS Deployment Framework through the Serverless Application Repository.
33
36
34
-
Merge this PR to complete the deployment of the version {0} of the AWS Deployment Framework.
37
+
Review this PR to understand what changes will be made to your bootstrapping
38
+
repository. If you also made changes to the repository yourself,
39
+
you might have to resolve merge conflicts before you can merge this PR.
40
+
41
+
Merge this PR to complete the deployment of the version {0} of the
Copy file name to clipboardExpand all lines: src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/lambda_codebase/initial_commit/tests/test_initial_commit.py
0 commit comments