Skip to content

Commit 16a453e

Browse files
committed
CI: Move repo to a (newer) Makefile
#### Problem Although the config repo is already using a Makefile, it is still using its own github workflows and scripts. #### Summary of changes Unify everything by using the Makefile and scripts from the ALT repo. Similar to others, this removes the `bpf-entrypoint` and `test-sbf` features, renames the program-mb.so, use the interface crate in benches, add words to the dictionary as needed.
1 parent 318c693 commit 16a453e

26 files changed

+488
-786
lines changed

.github/actions/setup/action.yml

Lines changed: 0 additions & 120 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Dependabot auto-merge
2+
on: pull_request
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
jobs:
9+
dependabot:
10+
runs-on: ubuntu-latest
11+
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository_owner == 'solana-program'
12+
steps:
13+
- name: Enable auto-merge
14+
run: gh pr merge --auto --squash "$PR_URL"
15+
env:
16+
PR_URL: ${{ github.event.pull_request.html_url }}
17+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
- name: Approve
19+
run: gh pr review --approve "$PR_URL"
20+
env:
21+
PR_URL: ${{ github.event.pull_request.html_url }}
22+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)