Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/actions/dependen…
Browse files Browse the repository at this point in the history
…cy-review-action-4.3.4
  • Loading branch information
4k4xs4pH1r3 authored Aug 16, 2024
2 parents 9200597 + e0a566f commit 840676a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/auto_merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Auto Update and Merge

on:
schedule:
- cron: '*/45 * * * *' # Run every 45 minutes
pull_request_target:
types: [assigned, unassigned, labeled, unlabeled, opened, edited, reopened, synchronize, ready_for_review, locked, unlocked, review_requested, review_request_removed, auto_merge_enabled, auto_merge_disabled]
branches:
- master # Replace 'target-branch' with your actual branch name


jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0 # Fetch all history for merging
ref: ${{ github.event.pull_request.head.ref }} # Checkout the PR's branch

- name: Merge PR into master
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git checkout master
git pull origin master # Ensure master is up-to-date
git merge ${{ github.event.pull_request.head.ref }} --no-ff # Merge the PR's branch
- name: Push changes
run: git push origin master
2 changes: 1 addition & 1 deletion .github/workflows/trivy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
docker build -t docker.io/my-organization/my-app:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@b2933f565dbc598b29947660e66259e3c7bc8561 # master
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # master
with:
image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}'
format: 'template'
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## docker push xeffyr/termux-advanced-builder
##

FROM ubuntu:24.04@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15
FROM ubuntu:24.04@sha256:e3f92abc0967a6c19d0dfa2d55838833e947b9d74edbcb0113e48535ad4be12a

# Fix locale to avoid warnings:
ENV LANG en_US.UTF-8
Expand Down

0 comments on commit 840676a

Please sign in to comment.